This commit is contained in:
LowPowerLab 2015-06-02 14:59:25 -04:00
commit 126592337b
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);
} }
} }