1
0
Fork 0

arduino-0018-linux-x64

This commit is contained in:
Eve Entropia 2010-03-30 20:09:55 +02:00
parent 8e4748e499
commit ed785c5798
426 changed files with 76732 additions and 0 deletions

View file

@ -0,0 +1,12 @@
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(0);
Serial.println(sensorValue, DEC);
}