Guest User

Untitled

a guest
Jan 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. long ping() {
  2.  
  3. long duration;
  4.  
  5. // clear ping pin
  6. digitalWrite(pingPin, LOW);
  7. delayMicroseconds(2);
  8.  
  9. digitalWrite(pingPin, HIGH);
  10. delayMicroseconds(10);
  11. digitalWrite(pingPin, LOW);
  12.  
  13. duration = pulseIn(echoPin, HIGH);
  14.  
  15. return duration;
  16. }
  17.  
  18. // Helper function to return the distance to an object
  19. // detected by the ultrasonic sensor in centimeters.
  20. long msToCm(long microseconds) {
  21. return microseconds * .034 / 2;
  22. }
Add Comment
Please, Sign In to add comment