231a-aj Blink Mod
This is program is based on Blink in the Examples section It is modified according to Limor's lesson 2
/*Blink Mod
- Tonje
- Basic example of how to make the LED blink on the Arduino
- /
int ledPin = 13; void setup() //runs once, when sketch starts { pinmode(ledPin, OUTPUT); }
void loop()