Hendrik Langer
7 years ago
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
#include "Arduino.h" |
|||
|
|||
#ifndef LED_BUILTIN |
|||
#define LED_BUILTIN 13 |
|||
#endif |
|||
|
|||
void setup() { |
|||
pinMode(LED_BUILTIN, OUTPUT); |
|||
} |
|||
|
|||
void loop() { |
|||
digitalWrite(LED_BUILTIN, HIGH); |
|||
delay(1000); |
|||
digitalWrite(LED_BUILTIN, LOW); |
|||
delay(1000); |
|||
} |
Loading…
Reference in new issue