Compare commits
2 Commits
4a13808e48
...
c90fa64900
Author | SHA1 | Date |
---|---|---|
Felix Pankratz | c90fa64900 | 1 week ago |
Felix Pankratz | 9ace9ffb24 | 1 week ago |
@ -1,19 +0,0 @@
|
||||
#include <Arduino.h>
|
||||
|
||||
#define LED 2
|
||||
|
||||
void setup() {
|
||||
// put your setup code here, to run once:
|
||||
//Serial.begin(115200);
|
||||
pinMode(LED, OUTPUT);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// put your main code here, to run repeatedly:
|
||||
digitalWrite(LED, HIGH);
|
||||
//Serial.println("LED is on");
|
||||
delay(1000);
|
||||
digitalWrite(LED, LOW);
|
||||
//Serial.println("LED is off");
|
||||
delay(1000);
|
||||
}
|
Loading…
Reference in New Issue