12. Nezha Expansion Board(EF05043)#

12.1. Introduction#


Nezha is an expanstion board for micro:bit with multuple functions available. It equips with four servos connections, four motors connections and seven sensors connections. All of the connections are required with RJ11 connectors that are fool-proofing and easy to plug. It is also compatible to Lego and Fischertechnik bricks and is available to get them connected with the electric modules, thus it allows students to easily create their own amazing micro:bit projects.

../_images/03444_01.png

12.3. Characteristics#


  • RJ11 connections, easy to plug.

12.4. Specification#


../_images/03444_02.png

12.5. Outlook and Dimensions#


../_images/03444_03.png

12.6. Main Parts Introduction#


../_images/03444_04.png

download link:https://github.com/elecfreaks/learn-en/raw/master/microbitExtensionModule/file/nezha-Main-Parts-Introduction.pdf

12.7. Add Package#


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

../_images/03444_05.png

We need to add a package for programming. Click “Extensions” in the bottom of the drawer and search with “nezha” in the dialogue box to download it.

../_images/03444_06.png

Note: If you met a tip indicating that the codebase will be deleted due to incompatibility, you may continue as the tips say or build a new project in the menu.

12.8. Ways of Operation#


TT Motor#

../_images/03444_07.png

Code as below:#

../_images/03444_08.png

Result#

Press button A to drive both motors; press button B to stop the motor connecting to M1; press both A&B to stop both motors.

Servo#

../_images/03444_09.png

Code as below:#

../_images/03444_10.png

Link#

Link: https://makecode.microbit.org/_L8rfzu3ELEyg

You may also download it directly below:

Result#

Press button A to drive the 180° servo to 0°; press button B to drive the 360° servo to 360°; press button A&B to continuously drive the servo at the speed of 100%.

12.9. Python Programming#


Step 1#

Download the package and unzip it: PlanetX_MicroPython

Go to Python editor

../_images/05001_07.png

We need to add nezha.py for programming. Click “Load/Save” and then click “Show Files (1)” to see more choices, click “Add file” to add nezha.py from the unzipped package of PlanetX_MicroPython.

../_images/03444_11.png ../_images/03444_12.png ../_images/03444_13.png

Step 2#

Reference#

from microbit import *
from nezha import *

nezha = NEZHA()
nezha.set_motors(1, 100)
while True:
    nezha.set_servo(1, 90)
    sleep(1000)
    nezha.set_servo(1, 0)
    sleep(1000)

Result#

  • The motor connecting to M1 drives at the speed of 100%; The servo connecting to S1 drives to 90° and pause one second, then it drives to 0° and pause another second, and it continuously drives in this pace.

12.10. Relevant File#


12.11. Technique File#