Skip to content

Commit 61743fd

Browse files
committed
change
1 parent c42ae45 commit 61743fd

2 files changed

Lines changed: 1 addition & 12 deletions

File tree

examples/.vscode/settings.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

examples/Advanced/Storage/EEPROM/EEPROM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void setup() {
2929
M5.Lcd.println("\nFailed to initialise EEPROM!"); //串口输出格式化字符串. Serial output format string
3030
delay(1000000);
3131
}
32-
M5.Lcd.println("\nRead data from Flash. Values are:");
32+
M5.Lcd.println("\nRead data from EEPROM. Values are:");
3333
for (int i = 0; i < SIZE; i++){
3434
M5.Lcd.printf("%d ",EEPROM.read(i)); //Reads data from 0 to SIZE in EEPROM. 读取EEPROM中从0到SIZE中的数据
3535
}

0 commit comments

Comments
 (0)