KRIVANJADIYables
Published © GPL3+

Analog Read Serial

This example demonstrates how to read analog input from a potentiometer.

BeginnerProtip3,809
Analog Read Serial

Things used in this project

Story

Read more

Schematics

Breadboad Diagram

Schematic Diagram

Code

Sketch

Arduino
/*
  Analog Read Serial
  Reads an analog input on pin 0.
  prints the result to the Serial Monitor.
  Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
*/

// the setup routine runs once when you press reset:
void setup() {
  // initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
}

// the loop routine runs over and over again forever:
void loop() {
  // read the input on analog pin 0:
  int sensorValue = analogRead(A0);
  // print out the value you read:
  Serial.println(sensorValue);
  delay(1);        // delay in between reads for stability
}

Credits

KRIVANJA

KRIVANJA

37 projects • 52 followers
www.krivanja.dev
DIYables

DIYables

0 projects • 79 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments