Microbit handle control

Microbit handle control1. Learning objectives2. Building blocks3. Motor wiring4. Code analysis4.1 Water Monster4.2 Handle5. Write and download the program6. Experimental phenomenon

1. Learning objectives

In this course, we mainly learn how to use Python programming to realize the microbit handle to control the water monster.

2. Building blocks

For the building blocks steps, please refer to the installation drawings of [Assembly course]-[Freestyle] in the materials or the building block installation album.

3. Motor wiring

The motor wiring on the left side of the car is inserted into the M1 interface of the Super:bit expansion board, and the black line is close to the battery side;

The motor wiring on the right side of the car is inserted into the M3 interface of the Super:bit expansion board, and the black line is close to the battery side;

As shown below:

image-20250611160433482

4. Code analysis

4.1 Water Monster

For the program, please refer to the Freestyle code.py file.

First, import the libraries needed for this lesson from microbit: the superbit library is dedicated to the superbit expansion board; neopixel is used to control the RGB light; radio is used for the wireless communication function of micro:bit.

np = neopixel.NeoPixel(pin12, 4): Initialize the RGB light settings. There are 4 RGB lights in total, connected to the P12 pin of the microbit motherboard (you can check the hardware interface manual for details);

display.show(Image.HEART): Display a heart pattern on the microbit dot matrix;

microbit.sleep(1000): Delay for 1 second;

radio.on(): Turn on the wireless function. Because the wireless function consumes more power and occupies more memory, it is turned off by default. You can also use radio.off() to turn off the wireless function;

radio.config(group=1): Configure wireless group=1, so that other microbit devices with wireless group=1 can communicate with each other. The default is 0, and the selectable group is 0~255. The set group value needs to be consistent with the handle setting, otherwise normal communication will not be possible;

mode = 1: Initialize the variable mode to 1.

In the main loop, determine the command sent by the handle to control the movement state of the water monster and the color of the RGB light.

incoming = radio.receive(): Receive the data transmitted wirelessly and save it to the incoming variable; if incoming is 'up', the motor will rotate, and if it is 'stop' and mode = 1, the motor will stop rotating;

If incoming is 'R', the body RGB will light up red, 'G' will light up green, 'B' will light up blue, and 'Y' will light up yellow.

Switch the current mode.

! Note:

The value of incoming needs to correspond to the value sent by the handle. Only the same value can receive and execute the command.

4.2 Handle

For the program, please refer to the Handle code.py file.

First, import the libraries needed in this lesson from microbit: the ghandle library is dedicated to the micro:bit hand; radio is used for the wireless communication function of micro:bit.

display.show(Image.HEART): Display a heart pattern on the microbit dot matrix;

radio.on(): Turn on the wireless function. Because the wireless function consumes more power and occupies more memory, it is turned off by default. You can also use radio.off() to turn off the wireless function;

radio.config(group=1): Configure wireless group=1, so that other microbit devices with wireless group=1 can communicate with each other. The default is 0, and the selectable group is 0~255. The set group value needs to be consistent with the handle setting, otherwise it will not communicate normally;

If ghandle.rocker(ghandle.up) is True, it means that the joystick of the handle is pushed up, so that the wireless sends the 'up' command and displays an upward icon;

If ghandle.rocker(ghandle.down) is True, it means that the joystick of the handle is pushed down, so that the wireless sends the 'down' command and displays a downward icon;

If ghandle.rocker(ghandle.left) is True, it means that the joystick of the handle is pushed to the left, so that the wireless sends the 'left' command and displays a left icon;

If ghandle.rocker(ghandle.right) is True, it means that the joystick of the handle is pushed to the right, so that the wireless sends the 'right' command and displays a right icon;

If ghandle.rocker(ghandle. pressed) is True, it means that the joystick of the handle is pressed, so the wireless sends the 'pressed' command and displays the 'X' icon;

If the remote control has no operation, send 'stop' and clear the display;

Special processing:

When the joystick is pressed, we use a variable rocker_key to ensure that only one turn_off command is sent. Corresponding to the program of the water monster, change the value of mode once.

Next, detect the buttons and send R', 'G', 'B', 'Y' commands to B1 (red), B2 (green), B3 (blue), and B4 (yellow).

5. Write and download the program

  1. Open the Mu software and enter the code in the editing window. Note! All English and symbols should be entered in English, use the Tab key for indentation, and the last line ends with a blank program.
  2. Click the thumb 'Check' button to check if there are any errors in our code. If a cursor or underline appears in a line, it means a syntax error. Please check and modify it. If there is no error, the lower left corner will prompt that there is no problem with the detection.

image-20250616213555929

  1. Click the 'REPL' button to check whether the Superbit library has been downloaded. If not, please refer to [Preparation before class] --> [2.4 Python Programming Guide].

image-20250616213637497

  1. After the program is written, connect the computer and microbit mainboard with a microUSB data cable, please click the 'Flash' button to download the program to the micro:bit mainboard. (You need to click the 'REPL' button again to turn off the import library file function before you can download the program normally).

image-20250616213730022

  1. If the download fails, please confirm whether the microbit is connected to the computer normally via the microUSB data cable and the Superbit Python library has been imported.

6. Experimental phenomenon

We need to download the Freestyle code.py file to the micro:bit motherboard of the water monster, turn on the power switch of the water monster, and we can see a smiley face pattern displayed on the micro:bit dot matrix;

Download the Handle code.py file to the micro:bit motherboard of the handle, turn on the power switch of the handle, we can see that the micro:bit dot matrix will be initialized to display a heart pattern, and then an "X" pattern will be displayed, indicating that the handle is in the default state and no data is sent.

The two will automatically complete the pairing, and then we can start to remotely control the water monster.

The handle function is as follows.

image.png

Handle joystick control:

After the handle and the water monster are successfully paired, we can see that the number 1 is displayed on the micro:bit dot matrix of the water monster, indicating that it is in mode 1 at this time.

In mode 1:

We can press the joystick to switch to mode 2. At this time, we can see the number 2 displayed on the micro:bit dot matrix of the paddle monster, indicating that it is in mode 2.

In mode 2:

Each time you press the joystick, it will switch back and forth between mode 1 and mode 2, and the RGB light will go out.

Handle gravity control:

After the handle and the water monster are paired successfully, we can see the number 1 displayed on the micro:bit dot matrix of the water monster.

(Note: There is only one mode for handle gravity control, and mode 2 cannot be switched)