These examples are hardcoding the LED pin instead of using the LED_BUILTIN function. This causes the LED to not blink on the controlling module.
Possibly due to being coded for one type of board, not multiple.
OpenLog myLog; //Create instance
int ledPin = 13; //Status LED connected to digital pin 13
void setup()
Fix
int ledPin = LED_BUILTIN; //Status LED connected to digital pin 13
These examples are hardcoding the LED pin instead of using the LED_BUILTIN function. This causes the LED to not blink on the controlling module.
Possibly due to being coded for one type of board, not multiple.
Fix
int ledPin = LED_BUILTIN; //Status LED connected to digital pin 13