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
14
_0001_delay/_0001_delay.ino
Normal file
14
_0001_delay/_0001_delay.ino
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
void setup()
|
||||
{
|
||||
Serial.begin(9600); // USB is always 12 Mbit/sec
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
digitalWrite(13, HIGH);
|
||||
Serial.println("Hello World...");
|
||||
delay(1000);
|
||||
digitalWrite(13, LOW);
|
||||
//Serial.println("Hello World...");
|
||||
delay(1000);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue