Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #define PinoSensorIR 1
  2. #define tempo 50
  3.  
  4. void setup (){
  5. Serial.begin(9600);
  6. }
  7. void loop(){
  8.  
  9. int varValor = analogRead(PinoSensorIR);
  10. Serial.println(varValor);
  11. delay(tempo);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement