DEBSOURCES
Skip Quicknav
sources / arduino / 0018%2Bdfsg-6 / examples / Stubs / AnalogReadSerial / AnalogReadSerial.pde
123456789101112
void setup() { Serial.begin(9600); } void loop() { int sensorValue = analogRead(0); Serial.println(sensorValue, DEC); }