Introduction: How to Build a Automatic Gate With a Micro:bit

About: ElecFreaks is an open design house founded in March 2011. Our goal is to create rapid prototypes and give small-batch manufacture solution for makers and startups. With over 50% staff as engineers and expanded…

Make a gate that opens and closes automatically when a pedestrian approaches.

Supplies

micro:bit x 1

Nezha expansion board x 1

360° servo x 1

Sonar:bit x 1

RJ11 wire x 1

Bricks x N

Step 1: Assembly Steps

As shown in the figure, construct the structure:

Step 2: Hardware Connections

As shown in the figure, connect the ultrasonic sensor to the J1 port of the Nezha expansion board, and connect the 360° servo to the S1 port of the Nezha expansion board.

Step 3: Software Programming

Go to MakeCode editor:(https://makecode.microbit.org/#editor)Add Wukong extension from the settings on the right upper conner.

Search with nezha in the dialogue box and add it to the package.

Search with Planet X in the dialogue box and add it to the package.

Now we go to the coding page:
When the program starts, display the designated icon and set the 360° servo connected to the S1 port to 180°

Then in the loop, assign the return value of the ultrasonic sensor connected to the J1 port to the variable "i"

Determine the value of variable "i". When this value is greater than 3 and less than 20, set the 360° servo to 240° and then pause for 5s, otherwise, set the 360° servo to 180°

Complete code

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

Step 4: Result

When the ultrasonic detects an object within 20cm, the gate is opened for five seconds and then closed.