diff --git a/python/genindex.html b/python/genindex.html index 74d7997ec..1ddbd25ba 100644 --- a/python/genindex.html +++ b/python/genindex.html @@ -269,10 +269,12 @@
set_neopixel()
set_pwm_channel_duty_cycle()
set_pwm_channel_value()
set_pwm_channels_duty_cycle()
set_pwm_channels_duty_cycle_values()
set_pwm_channels_value()
set_pwm_channels_values()
Like set_pwm_channel_duty_cycle()
. This function sets the duty cycle for a list of multiple PWM channels.
channels ([PwmChannel
]) – A list of PWM channels to configure.
duty_cycle (f32) – Duty cycle count value (0.0 : 1.0).
Examples
+You can use this method like set_pwm_channel_duty_cycle()
.
>>> navigator.set_pwm_channels_value([PwmChannel.Ch1, PwmChannel.Ch16], 0.5)
+