1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/projekte/oszi-grafik/sketch_mar26a/sketch_mar26a.pde
2010-03-31 21:18:41 +02:00

14 lines
214 B
Text

void setup() {
for(int p=8; p<=11; p++) {
pinMode(p, OUTPUT);
}
}
void loop() {
for (int c=0; c<16; c++) {
for (int b=0; b<4; b++) {
digitalWrite(8+b, c & _BV(b));
}
delay(100);
}
}