Chapter 10 of KitiBot-Microbit

From Waveshare Wiki
Jump to: navigation, search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Chapter 10 Ultrasonic Obstacle

In this chapter we talk about how to use ultrasonic sensor and use ultrasonic for obstacle.

Generally, our ears cannot hear sounds above 20 kHz (sound was generated by vibration, 10 kHz, which is equivalent to 20 thousand vibrations per second, which is 20,000 times). Sonic waves produced above 20 kHz are called "ultrasounds". Due to their amblyopia, bats flying at night emit such ultrasound. Bats rely mainly on ultrasound to locate any avoidable obstacle on their way. Sound waves are emitted by the bat's throat and received by their ears, according to the received sound waves. They can determine the position of the front object. Ultrasound sensor invention is based on the same method

Ultrasonic microbit.png

Ultrasonic sensor is mounted on the cat face, looks like two eyes of the cat, one eye is receiver and another is sender. With this ultrasonic sensor, Robot can detect the distance of obstacle in the front.

Read value of ultrasonic sensor

Ultrasonic block.png: Using Ultrasonic block, we can read distance value (integer) from ultrasonic sensor.

We make a project to read ultrasonic value and display to LED matrix

Ultrasonic value display microbit.gif

Ultrasonic value display microbit2.png

Show distance value with bar graph

Light more leds if obstacle is farer, less leds if closer

Ultrasonic bar graph microbit.gif

Ultrasonic bar graph microbit2.png

Obstacle detecting

We use ultrasonic sensor to detect obstacle and make robot stop when obstacle detected.

Ultrasonic obstacle mirobit.gif

Ultrasonic obstacle mirobit2.png

Ultrasonic sensor keeps detecting distance of obstacles in front, if distance is farer than 15cm, robot move forward, and stop if distance detected is less than 15cm. Note that you need to set servo degree to 90 on start, make sure ultrasonic sensor faces forward.

Turning when obstacle detected

We modify the code, let robot turn right when obstacle detected.

Ultrasonic obstacle microbit3.gif

Ultrasonic obstacle microbit4.png

Turning according to distance

Here we add servo control code. Robot will rotate to both side to detect distance (obstacle) and turn to the farer side when obstacle is detected in front.

Ultrasonic obstacle microbit5.gif

Ultrasonic obstacle microbit6.png

Variables rdis and ldis are used to save distances of right side and left side. By comparing rdis and ldis, robot can judge which side is farer. Pause are added because servo need times to rotate.

Related Pages