Advertisement
inventrkits

temp

Jan 22nd, 2020
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. int sensorPin = A0; // select the input pin for the potentiometer
  2. int sensorValue = 0; // variable to store the value coming from the sensor
  3.  
  4. void setup ()
  5. {
  6.   Serial.begin (9600);
  7. }
  8.  
  9. void loop ()
  10. {
  11.   sensorValue = analogRead (sensorPin);
  12.   Serial.println (sensorValue, DEC);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement