Guest User

Untitled

a guest
Jan 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. int pin12;
  2. int A12 = A12;
  3.  
  4. void setup() {
  5. // put your setup code here, to run once:
  6. Serial.begin(9600);
  7. }
  8.  
  9. void loop() {
  10. // put your main code here, to run repeatedly:
  11. pin12 = analogRead(A11);
  12.  
  13. Serial.print("pin 12 is ");
  14. Serial.println(pin12);
  15.  
  16. delay(5000);
  17. }
Add Comment
Please, Sign In to add comment