====== PwmOff ======
Stop PWM output on the specified ''channel''.
===== Syntax =====
from cubloc import PwmOff
PwmOff(channel: int)
===== Parameters =====
* **channel**: PWM ''channel'' number. This hardware supports channels 0 through 9.
===== Exceptions =====
* [[https://docs.micropython.org/en/latest/library/builtins.html#TypeError|TypeError]]: ''channel'' is not an integer.
* [[https://docs.micropython.org/en/latest/library/builtins.html#ValueError|ValueError]]: ''channel'' is out of range.
===== Example =====
from cubloc import PwmOff
# Example usage
PwmOff(0)
===== Related APIs =====
* [[logicpython:cubloc_api:pwm|Pwm]]