]> git.piffa.net Git - arduino/blob - books/ArduinoNextSteps-master/ArduinoNextSteps/sketch_06_09_avr_eeprom_string_read/sketch_06_strings_in_flash_example/sketch_06_strings_in_flash_example.ino
first commit
[arduino] / books / ArduinoNextSteps-master / ArduinoNextSteps / sketch_06_09_avr_eeprom_string_read / sketch_06_strings_in_flash_example / sketch_06_strings_in_flash_example.ino
1
2
3 void setup() 
4 {
5     Serial.begin(9600);
6 }
7
8 void loop() 
9 {
10     Serial.println(F("Program Started"));
11     delay(1000);
12 }