4. case 01 Fixed Parking#

4.1. Our Goal#

Make motor:bit smart car realize fixed parking function.

4.2. Material#

1 x motor:bit smart car kit

4.3. Background Knowledge#

Principle of Line Tracking#

The line tracking module in this kit has adopted an infrared sensor. It consists of a transmitter and a receiver. The transmitter emits infrared light, while the receiver collects the infrared light reflected by the ground. When contacting with black ground or other infrared light absorbing materials, the receiver can’t receive the infrared light, then the light tracking module returns to 1.

../../_images/uPsoeBB.jpg

4.4. Hardware Connection#

Connect the left sensor(S1) on line tracking module to the 4th pin on motor:bit. And connect the right sensor(S2) to 3rd pin. See picture below.

../../_images/BOpsVvF.jpg

../../_images/kzPngGo.jpg

4.5. Software#

Microsoft MakeCode

4.6. Programming#

Step 1#

Click Advanced in the code drawer of MakeCode to see more options.

../../_images/LjMR5IU1.png

To program for motor:bit, we have to add a package. Find Add Package in the bottom of code drawer and click it. This will pop up a dialogue box. Search for “motorbit” and then click to download this package.

../../_images/XDlSfIS.png

Note: If you get a hint that some packages will be deleted due to the problem of incompatibility, you can either follow the prompts, or create a new project in the project menu.

Step 2#

Insert a move forward with speed block below on start. Set the speed parameter to 80, which means the car will move forward at the speed of 80 when being powered on. Create two variables: left and right. They are used to collect the return values of the left or right sensor. set their initial value to 1.

../../_images/tYJS1aY.png

Step 3#

Within forever block, read digital pin P3 and P4, which are correspond to the left or right sensor on line tracking module separately. Assign value toleftand right variable. Judge if left or right is 0, which means one of the two sensors has detected black line. If left or right is 0, set the motor speed to 0 and stop the car.

../../_images/p2WuniN.png

Program#

Link of the whole program: https://makecode.microbit.org/_1gXfr9fdA6LH

You can also download it from the page below.

Note: Due to the effect of inertia, the car will rush out a certain distance before stop when a black line is detected.

4.7. Result#

Once powered on, the car moves forward at the speed of 80. When a black line is detected by the line tracking module, the car stops immediately.

4.8. Think#

Create more black lines to allow the car complete fixed turning and slow down speed. How can we program?

4.9. FAQ#

4.10. Relative Readings#