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
i've tried to use a eeprom_clear demo sketch, but if i upload it, LED stays off.
Then i tried to read a EEPROM:
#include <EEPROM.h>
void setup() {
Serial.begin(115200);
Serial.print("EEPROM Size: ");
Serial.println(EEPROM.length()); //it works with only with delay(10);
delay(10);
Serial.print("Data: ");
Serial.println(EEPROM.read(0));
Serial.println("I'm here"); //i've never seen this line :/
}
void loop() {}
Console output with delay(10); EEPROM Size: 16384 Dat
without delay: EEP
i use official core release 2017.06.2
Upload via Mass Storage.
The text was updated successfully, but these errors were encountered:
i've tried to use a eeprom_clear demo sketch, but if i upload it, LED stays off.
Then i tried to read a EEPROM:
Console output with delay(10);
EEPROM Size: 16384 Dat
without delay:
EEP
i use official core release 2017.06.2
Upload via Mass Storage.
The text was updated successfully, but these errors were encountered: