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-0018-linux/examples/Stubs/AnalogReadSerial/AnalogReadSerial.pde

13 lines
131 B
Text
Raw Normal View History

2010-03-31 21:11:30 +02:00
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(0);
Serial.println(sensorValue, DEC);
}