ledc_set_fade_with_step() function
Set LEDC fade function.
Arguments
speed_mode
Select the LEDC channel group with specified speed mode. Note that not all targets support high speed mode.
channel
LEDC channel index (0 - LEDC_CHANNEL_MAX-1), select from ledc_channel_t
target_duty
Target duty of fading [0, (2**duty_resolution)]
scale
Controls the increase or decrease step scale.
cycle_num
increase or decrease the duty every cycle_num cycles
Return value
- ESP_OK Success - ESP_ERR_INVALID_ARG Parameter error - ESP_ERR_INVALID_STATE Channel not initialized - ESP_FAIL Fade function init error
Notes
Call ledc_fade_func_install() once before calling this function. Call ledc_fade_start() after this to start fading. ledc_set_fade_with_step, ledc_set_fade_with_time and ledc_fade_start are not thread-safe, do not call these functions to control one LEDC channel in different tasks at the same time. A thread-safe version of API is ledc_set_fade_step_and_start For ESP32, hardware does not support any duty change while a fade operation is running in progress on that channel. Other duty operations will have to wait until the fade operation has finished.