Fixed comment in sensors.h

This commit is contained in:
Patrick Goebel 2016-09-12 05:41:23 -07:00
parent b8931b271d
commit dd58da63d1

View File

@ -26,7 +26,7 @@ long Ping(int pin) {
pinMode(pin, INPUT);
duration = pulseIn(pin, HIGH);
// convert the time into meters
// convert the time into centimeters
range = microsecondsToCm(duration);
return(range);