You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to
bool initFileSystem()
{ if (!SD_MMC.begin("/sdcard", true))
This switch the SDCARD-Reader to 3-wire-mode and you can control the LED with PIN 4 like
//switch FlashLED off
pinMode(4, OUTPUT);
digitalWrite(4, 0);
Otherwise it is also possible to dimming the LED in PWM-mode
Nice Work, but the flashing LED driving me nuts..
Here is a hint for switch off the flashing LED
In file.cpp change the following line :
bool initFileSystem()
{ if (!SD_MMC.begin())
to
bool initFileSystem()
{ if (!SD_MMC.begin("/sdcard", true))
This switch the SDCARD-Reader to 3-wire-mode and you can control the LED with PIN 4 like
//switch FlashLED off
pinMode(4, OUTPUT);
digitalWrite(4, 0);
Otherwise it is also possible to dimming the LED in PWM-mode
I appended a zip with switched off LED and a WiFimanager
TimeLapse_wo_LED.zip
The text was updated successfully, but these errors were encountered: