1
0
Fork 0

arduino-0017-linux-x64

This commit is contained in:
Eve Entropia 2010-03-30 20:10:36 +02:00
parent ed785c5798
commit ddf58ffb08
436 changed files with 62981 additions and 0 deletions

View file

@ -0,0 +1,13 @@
void setup() {
Serial.begin(9600);
pinMode(2, INPUT);
}
void loop() {
int sensorValue = digitalRead(2);
Serial.println(sensorValue, DEC);
}