diff --git a/python/genindex.html b/python/genindex.html index cd3932e56..74d7997ec 100644 --- a/python/genindex.html +++ b/python/genindex.html @@ -273,6 +273,8 @@
set_neopixel()
set_pwm_channel_duty_cycle()
set_pwm_channel_value()
set_pwm_channels_duty_cycle_values()
set_pwm_channels_value()
set_pwm_channels_values()
set_pwm_enable()
Like set_pwm_channel_duty_cycle()
. This function sets the duty cycle for a list of
+multiple channels with multiple values.
channels ([PwmChannel
]) – A list of PWM channels to configure.
duty_cycle_values (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_duty_cycle_values([PwmChannel.Ch1, PwmChannel.Ch5], [0.25, 0.75])
+