Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dcfake77-esp32/dcfake77-esp32.ino
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ void setup()
WiFi.mode(WIFI_OFF);

// Configure LED PWM functionalitites
ledcSetClockSource(LEDC_USE_XTAL_CLK);
//ledcSetClockSource(LEDC_USE_XTAL_CLK); // produces a not defined error when compiling - esp32 core 3.3.3 using board NodeMCU-32S
ledcSetClockSource(LEDC_AUTO_CLK);
//ledcSetup(led_pwm_channel, led_pwm_freq, led_pwm_resolution);
// Attach the channel to the GPIO to be controlled
//ledcAttachPin(led_pwm_pin, led_pwm_channel);
Expand Down