9. Case 06: Automatic Obstacle Avoidance#

9.1. Purpose#


  • Build a Wonder Rugged Kit that can avoid obstacles.

9.3. Background Knowledge#


9.4. Software#


MicroSoft makecode

9.5. Program#


Step 1#

Click “Advanced” in the drawer of MakeCode to see more choices.

../../_images/Mecanum_wheel_car_kit_case_01_01.png

For programming the Wonder Rugged Kit, we need to add a package. Click “Extensions” at the bottom of the drawer and then search “Wukong” in the dialogue box to download it.

../../_images/Mecanum_wheel_car_kit_case_01_02.png

For programming the ultrasonic sound sensor, we need to add a package. Click “Extensions” at the bottom of the drawer and then search “github.com/elecfreaks/pxt-sonarbit” in the dialogue box to download it.

../../_images/Mecanum_wheel_car_kit_case_03_04.png

Note: If you get a warning indicating some packages will be removed because of incompatibility issues, you can follow the prompts or create a new project in the menu.

Step 2#

Click Wukong to choose mecanum block.

../../_images/Mecanum_wheel_car_kit_case_01_03.png

Step 3#

Drag mecanum into on start block and set the connection for servos accordingly.

../../_images/Mecanum_wheel_car_kit_case_06_05.png

Step 4#

Set the car to move forward and judge the distance between the obstacle and the car, if the distance is below 25cm, the car goes back with 500ms and turns left with 500ms.

../../_images/Mecanum_wheel_car_kit_case_06_06.png

Program#

Links: https://makecode.microbit.org/_HD5CK8LmPWhH

You can also download it directly:

Result#

The car moves forward after starting, if detecting any obstacles, it goes back and turns left to avoid the obstacle and then keeps going.

9.6. Exploration#


9.7. FAQ#


9.8. Relevant Files#