blinking the light!

This commit is contained in:
unlockable
2023-08-12 14:02:03 +08:00
parent 1e798c6362
commit 5942b7fa1f

11
Test/Test.ino Normal file
View File

@@ -0,0 +1,11 @@
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
delay(2);
digitalWrite(2, LOW);
delay(14);
}