diff --git a/helloWorld_UNO.ino b/helloWorld_UNO.ino index a1707fe..6e43c1a 100644 --- a/helloWorld_UNO.ino +++ b/helloWorld_UNO.ino @@ -112,8 +112,8 @@ void loop() Serial.println(value2); delay(1000); - EEPROM.write(34,'b'); - char lue = EEPROM.read(34); + EEPROM.write(678,311); + int lue = EEPROM.read(678); Serial.print("EEPROM value is: "); Serial.println(lue); } diff --git a/settings.txt b/settings.txt index d0ecafb..1b9843a 100644 --- a/settings.txt +++ b/settings.txt @@ -1,2 +1,2 @@ -# Simuino Setting Sat Oct 26 14:57:17 2013 -SKETCH: helloWorld_MEGA.ino +# Simuino Setting Sun Oct 27 22:11:49 2013 +SKETCH: helloWorld_UNO.ino diff --git a/simuino.c b/simuino.c index f0cb831..340c671 100644 --- a/simuino.c +++ b/simuino.c @@ -711,7 +711,7 @@ void runMode(int stop) unoInfo(); if(g_debug == 1) - readFile(confSketchFile,g_lineSketch[currentStep]); + readFile(g_currentSketch,g_lineSketch[currentStep]); ch = getchar();