Update SPIFlash_ReadWrite.ino

This commit is contained in:
Felix Rusu 2015-05-03 16:02:57 -04:00
parent 46b3d40a0c
commit f192bfa94c
1 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ void loop(){
if ((int)(millis()/500) > lastPeriod) if ((int)(millis()/500) > lastPeriod)
{ {
lastPeriod++; lastPeriod++;
pinMode(9, OUTPUT); pinMode(LED, OUTPUT);
digitalWrite(9, lastPeriod%2); digitalWrite(LED, lastPeriod%2);
} }
} }