mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-02 13:24:12 +01:00
17 lines
329 B
C++
17 lines
329 B
C++
/*
|
|
AnalogReadSerial
|
|
Reads an analog input on pin 0, prints the result to the serial monitor
|
|
|
|
This example code is in the public domain.
|
|
*/
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
}
|
|
|
|
void loop() {
|
|
int sensorValue = analogRead(A0);
|
|
Serial.println(sensorValue);
|
|
delay(1); // delay in between reads for stability
|
|
}
|