1. Lesson 1

../_images/1_110.png

1.1. Introduction

Welcome to Micro:bit Smart Car tutorial! In this course, we will explore Micro:bit and learn how to develop Micro:bit Smart Car by programming

1.2. Learning Target

Let students clearly understand Micro:bit Smart Car’s extension tools and its functions, moreover, understanding its install and block coding method

1.3. Reviewing the structure of Mecanum Wheel Car

  • 4 Motor(M1, M2, M3, M4)

  • 4 Mecanum Wheel

  • Micro bit

  • Micro bit expanding board

../_images/1_212.png

1.3.1. micro:bit expansion board

../_images/1_36.png

1.3.2. Sensor

  • Ultrasonic Sensor

../_images/1_42.png ../_images/1_51.png

  • Infrared Receiver and Sender

../_images/1_61.png

1.4. Reviewing of advanced block

Advance >> function module can tidy up complicate program and reuse them

1. Functions

a. Build functions

../_images/1_71.png

b. Fill in the function name in yellow box

../_images/1_81.png

c. Execute program by calling the function

../_images/1_92.png

1.5. Meet the Mechanical extension tools

1.5.1. Beetle

../_images/1_102.png

1.5.2. Loader

../_images/1_112.png

1.5.3. Forklift

../_images/1_122.png

1.5.4. Bulldozer with ultrasonic

../_images/1_132.png

1.5.5. Components in extension package

../_images/1_142.png ../_images/1_152.png

1.6. Meet the Micro:bit extension tools – beetle

The form of Micro:bit gripper mainly are Upper and lower jaws with gear and servo motor, usually install in front of the car

../_images/1_162.png

This time we will connect the pin of servo motor to port S1(pin indicate by blue box), normally we will connecting dark wire(Black or Red) to GND port(Black).

../_images/1_172.png

1.6.1. Principle and function of Mechanical beetle

In real life, beetle is used to grip object instead of hands, to avoid injure or make dirty of hands, common example is bread clip in bakery shop and clip for hanging clothes. By applying force in both jaws, things between jaws can be stabilize

../_images/1_18.jpg

Micro:bit mechanical clip shape like the main jaw of Stag beetle, like tongs with serrate, therefore it also names as “Beetle”.

../_images/1_192.png

1.6.2. Install of beetle

Components needed

../_images/1_202.png

1)Put three M3.5*5mm screw, upper arm and drive forearm of the metal beetle on metal gripper board, finished right arm.

../_images/1_213.png

2)Use two M3.5*5mm screw, connecting the servo forearm with servo connection board.

../_images/1_222.png

3)Use two M3*5mm screw, place another beetle upper arm on assembled servo forearm, finish left arm.

../_images/1_232.png

4)Use two M2.5*5mm screw, screw the servo motor on the metal board.

../_images/1_242.png

(Place right arm next to the left arm, then test the operational of servo motor by assign servo module with zero degree.(5))

5)Use one M2.5*5mm screw, combine left arm, servo conection board and servo motor together.

../_images/1_252.png

6)Use three M3*5mm screw, three M3*18mm copper pillars, assembly with the metal board.

../_images/1_262.png

7)Use three M3*5mm screws, assembly gripper board with copper pillar

../_images/1_272.png

8)Use two screws, two screw pads, install beetle on car/expanding board, As show below. (Avoid over tighten in screwing up, prevent bending of expanding board)

../_images/1_282.png

1.7. Stemhub:bit - Servo Motor block module

In Stemhub:bit, there are two main modules in servo

../_images/1_292.png ../_images/1_301.png

Select port and connect with the pin of servo, then we can adjust the servo rotate angle. (The angle value in MakeCode is 0-180, but the value does not imply the rotation angle in reality)

1.8. Exercise 1

Design a program to control the open of beetle in Micro:bit board using bottom A and B.

Tip : Try assign different angle to servo module and observe the movement of the beetle.

../_images/1_311.png

(To avoid over extend of beetle and leading broken, recommend servo degree value is 0 to 110)

Angle value Beetle movement
Increase
Decrease

After success on beetle open/close, student can do experiment using beetle!

Beside on object provide in lesson, you can also place small things between the beetle, and see what will happen with different shape and weight of things.

../_images/1_321.png ../_images/1_331.png

1.9. Exercise 2

Download the remote package:

Type link https://github.com/lzty634158/GHBit in yellow box, Add GHBit to makecode

../_images/1_341.png ../_images/1_351.png

Design the program for Car and remote, open/close by press bottom B1 and B2, control the forward, backward, turning left and right of the car by using control rod, car will stop if pending of remote.

../_images/1_361.png

When the beetle is open/close, the micro:bit board of the car will indicate “open” or “close” using indicate light.

../_images/1_37.png ../_images/1_38.png

( Delay of indicate light is normal)

  • Refer to Beginner, Lesson 10, receive text as operation condition

  • Apply basic >> Show of indicate light using block module

After finished exercise 2, you can use your own code to control the car and beetle.

1.10. Answer

1.10.1. Exercise 1:

../_images/1_39.png ../_images/1_40.png

1.10.2. Exercise 2

1.10.2.1. Program of Remote

For remote of back and forth, left and right, execute bottom function and stop automatically, you can refer to Beginner, Lesson 10, Exercise 2

../_images/1_411.png

1.10.2.2. Program of the Car

For remote of back and forth, left and right, execute bottom function and stop automatically, you can refer to Beginner, Lesson 10, Exercise 2

When Car receives text ”B1”, open the beetle and show “open” indicate light.

When Car receives text ”B2”, close the beetle and show “close” indicate light.

../_images/1_421.png