]> git.piffa.net Git - arduino/blob - books/ArduinoNextSteps-master/ArduinoNextSteps/sketch_05_null/sketch_05_null.ino
first commit
[arduino] / books / ArduinoNextSteps-master / ArduinoNextSteps / sketch_05_null / sketch_05_null.ino
1 void setup() {
2   // put your setup code here, to run once:
3   pinMode(13, OUTPUT);
4   digitalWrite(13, LOW);
5 }
6
7 void loop() {
8   // put your main code here, to run repeatedly: 
9   
10 }