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/arduino-0017-linux-x64/examples/Stubs/DigitalReadWrite/DigitalReadWrite.pde
2010-03-30 20:10:36 +02:00

12 lines
132 B
Text

void setup() {
pinMode(13, OUTPUT);
}
void loop() {
int switchValue = digitalRead(2);
digitalWrite(13, switchValue);
}