dumped all my old arduino stuff in here.
This commit is contained in:
parent
8cc6f23f59
commit
8f8959b76f
76 changed files with 8127 additions and 2 deletions
19
Blink_test/Blink_test.pde
Normal file
19
Blink_test/Blink_test.pde
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
Blink
|
||||
Turns on an LED on for one second, then off for one second, repeatedly.
|
||||
|
||||
This example code is in the public domain.
|
||||
*/
|
||||
|
||||
void setup() {
|
||||
// initialize the digital pin as an output.
|
||||
// Pin 13 has an LED connected on most Arduino boards:
|
||||
pinMode(13, OUTPUT);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
digitalWrite(13, HIGH); // set the LED on
|
||||
//delay(20); // wait for a second
|
||||
//digitalWrite(13, LOW); // set the LED off
|
||||
//delay(20); // wait for a second
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue