Advertisement
inventrkits

clap

Jan 22nd, 2020
529
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 ledPin = 13; // select the pin for the LED
  3. int sensorValue = 0; // variable to store the value coming from the sensor
  4.  
  5. void setup ()
  6. {
  7.   pinMode (ledPin, OUTPUT);
  8.   Serial.begin (9600);
  9. }
  10.  
  11. void loop ()
  12. {
  13.   sensorValue = analogRead (sensorPin);
  14.   Serial.println (sensorValue, DEC);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement