Output a PWM waveform on the specified channel.
from cubloc import Pwm Pwm(channel: int, duty: int, period: int)
channel number. This hardware supports channels 0 through 9.duty count, where 0 <= duty < period.period count (1 to 65535).from cubloc import Pwm # Example usage Pwm(0, 1, 1)