blinking the light!
This commit is contained in:
11
Test/Test.ino
Normal file
11
Test/Test.ino
Normal file
@@ -0,0 +1,11 @@
|
||||
void setup() {
|
||||
pinMode(2, OUTPUT);
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
digitalWrite(2, HIGH);
|
||||
delay(2);
|
||||
digitalWrite(2, LOW);
|
||||
delay(14);
|
||||
}
|
||||
Reference in New Issue
Block a user