Chapter 24 Ultrasonic Ranging
260
Subfunction
getSonar
() function is used to start the ultrasonic module for a measurement, and return the
measured distance with unit cm. In this function, first let trigPin send 10us high level to start the ultrasonic
module. Then use
pulseIn
() to read ultrasonic module and return the duration of high level. Finally calculate
the measured distance according to the time.
d e f
getSonar
():
#get the measurement results of ultrasonic module, with unit: cm
GPIO
.
output
(
trigPin
,
GPIO
.
HIGH
)
#make trigPin send 10us high level
time
.
sleep
(
0.00001
)
#10us
GPIO
.
output
(
trigPin
,
GPIO
.
LOW
)
pingTime
=
pulseIn
(
echoPin
,
GPIO
.
HIGH
,
timeOut
)
#read plus time of echoPin
distance
=
pingTime
*
340.0
/
2.0
/
10000.0
# the sound speed is 340m/s, and
calculate distance
r e turn
distance
Finally, in the while loop of main function, get the measurement distance and print it out constantly.
w h ile
(
True
):
distance
=
getSonar
()
p r int
(
"The distance is : %.2f cm"
% (
distance
))
time
.
sleep
(
1
)
About function
d e f
pulseIn
(
pin
,
level
,
timeOut
)
:
def pulseIn(pin,level,timeOut):
Return the length of the pulse (in microseconds) or 0 if no pulse is completed before the timeout (unsigned
long).
Содержание Ultimate Starter Kit
Страница 1: ...Free your innovation Freenove is an open source electronics platform www freenove com ...
Страница 116: ...Chapter 9 Potentiometer RGBLED 116 www freenove com support freenove com Circuit Schematic diagram ...
Страница 117: ...117 Chapter 9 Potentiometer RGBLED www freenove com support freenove com Hardware connection ...
Страница 136: ...Chapter 12 Joystick 136 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...
Страница 155: ...155 Chapter 14 Relay Motor www freenove com support freenove com Hardware connection OFF 3 3V ...
Страница 173: ...173 Chapter 16 Stepping Motor www freenove com support freenove com Hardware connection ...
Страница 182: ...Chapter 17 74HC595 LEDBar Graph 182 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...
Страница 197: ...197 Chapter 18 74HC595 7 segment display www freenove com support freenove com Circuit Schematic diagram ...
Страница 198: ...Chapter 18 74HC595 7 segment display 198 www freenove com support freenove com Hardware connection ...
Страница 239: ...239 Chapter 22 Matrix Keypad www freenove com support freenove com Circuit Schematic diagram ...
Страница 240: ...Chapter 22 Matrix Keypad 240 www freenove com support freenove com Hardware connection ...
Страница 270: ...Chapter 26 WebIOPi IOT 270 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...