We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c42ae45 commit 61743fdCopy full SHA for 61743fd
2 files changed
examples/.vscode/settings.json
examples/Advanced/Storage/EEPROM/EEPROM.ino
@@ -29,7 +29,7 @@ void setup() {
29
M5.Lcd.println("\nFailed to initialise EEPROM!"); //串口输出格式化字符串. Serial output format string
30
delay(1000000);
31
}
32
- M5.Lcd.println("\nRead data from Flash. Values are:");
+ M5.Lcd.println("\nRead data from EEPROM. Values are:");
33
for (int i = 0; i < SIZE; i++){
34
M5.Lcd.printf("%d ",EEPROM.read(i)); //Reads data from 0 to SIZE in EEPROM. 读取EEPROM中从0到SIZE中的数据
35
0 commit comments