]> git.piffa.net Git - arduino/blob - books/ArduinoNextSteps-master/ArduinoNextSteps/sketch_06_08_avr_eeprom_string/sketch_06_08_avr_eeprom_string.ino
gio
[arduino] / books / ArduinoNextSteps-master / ArduinoNextSteps / sketch_06_08_avr_eeprom_string / sketch_06_08_avr_eeprom_string.ino
1 // sketch_06_07_avr_eeprom_string
2
3 #include <avr/eeprom.h>
4
5 void setup()
6 {
7   char message[] = "I am written in EEPROM";
8   eeprom_write_block(message, (void *)100, strlen(message) + 1);
9 }
10
11 void loop()
12 {
13 }