Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. int x;
  2. void setup() {                
  3.  Serial.begin(9600);
  4. }
  5.  
  6. void loop() {
  7.  
  8.   x = analogRead(A2);  
  9.   Serial.println(x);
  10.   delay(50);
  11. }
Add Comment
Please, Sign In to add comment