inoProjects/BlinkingLight/BlinkingLight.ino

16 lines
211 B
Arduino
Raw Normal View History

2019-03-11 17:20:53 -04:00
/*
*@author James McKenzie
*@lang C89 Based
*@contact lunarised@outlook.com
*/
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(100);
digitalWrite(13, LOW);
delay(100);
}