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
27
_74HC238/_74HC238.pde
Normal file
27
_74HC238/_74HC238.pde
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
pinMode(11, OUTPUT);
|
||||
pinMode(12, OUTPUT);
|
||||
pinMode(13, OUTPUT);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
digitalWrite(11, LOW);
|
||||
digitalWrite(12, LOW);
|
||||
digitalWrite(13, LOW);
|
||||
|
||||
delay(100);
|
||||
|
||||
digitalWrite(11, HIGH);
|
||||
digitalWrite(12, LOW);
|
||||
digitalWrite(13, LOW);
|
||||
|
||||
delay(100);
|
||||
|
||||
digitalWrite(11, LOW);
|
||||
digitalWrite(12, HIGH);
|
||||
digitalWrite(13, LOW);
|
||||
|
||||
delay(100);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue