Add Blink sketch

This commit is contained in:
coolneng 2019-11-29 20:13:55 +01:00
parent 6250b49538
commit a856e1c96b
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 14 additions and 0 deletions

Binary file not shown.

Binary file not shown.

14
Week 4/Blink/Blink.ino Normal file
View File

@ -0,0 +1,14 @@
#define LED_BUILTIN D4
void setup() {
pinMode(LED_BUILTIN,OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN,LOW);
delay(1000);
digitalWrite(LED_BUILTIN,HIGH);
delay(1000);
}