Guest User

Untitled

a guest
Mar 6th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. int analogValue = 0;
  2. void setup() {
  3. Serial.begin(9600);
  4. }
  5. void loop() {
  6. analogValue = analogRead(0)/4;
  7. Serial.println(analogValue, DEC);
  8. delay(100);
  9. }
Add Comment
Please, Sign In to add comment