micro:Maqueen PLUS

1.Introduction

This is the latest version of Maqueen Plus, a programming robot for STEAM education. Optimized with more expansion ports, larger capacity power supply and larger body, the Maqueen Plus V2.0 can be perfectly compatible with more peripheral components like HuskyLens AI camera and Maqueen Mechanic kits, which makes it an accessible STEAM robot teaching tool for primary and secondary stude nts. Besides, it can be not only suitable for classroom teaching, but also can be used for after-school extended exercises and robot competitions. Besides all the functions of Maqueen Lite, it offers richer and more flexible functions and stronger performance. Whether you have ever used Maqueen series products or not, you'll find it very easy to get started.

Features

2.Specification

Specification for Maqueen Plus V1.0 Specification for Maqueen Plus V2.0
1.Power Supply: 3.7V-18650 lithium battery
2.Charging Voltage: 5V
3.Charging Current: 900mA
4.Charging Time: 4h
5.Battery Indicator: 4 LEDs
6.Drive Motor: N20 motor 260 rpm
7.Buzzer * 1
8.RGB-LED * 2
9.GPIO Expansion Ports:P0 P1 P2 P8 P12 P13 P14 P15 P16
10.I2C Expansion Ports * 3
11.Servo Expansion Ports 3
12.Line Tracking Sensors *6
13.Line Tracking Sensor Output Data: analog + digital
14.Line Sensor Calibration: support 15.Infrared Receiving Sensor *1
16.Ultrasonic Sensor: URM10
17.Top Metal Plate * 1
18.M3 threaded connections *12
19.Map Size: 50cm
50cm
20.Dimension: 107x100mm/4.21 x3.94”
1. Power Supply:
- MBT0021-EN: 1.5V AA alkaline battery x 4 or 1.2V AA Ni-MH battery x 4
- MBT0021-EN-18650: 18650 Li-ion battery (3.6V or 3.7V) x 1, onboard charging circuit, MicroUSB and TYPE-C charging interface, 4 hours to charge fully, last about 15h
2. Support micro:bit V1 and V2
3. N20 All-metal Gear Motor x 2
4. Buzzer x 1
5. 5V IO (P0 P1 P2) x 3
6. 3.3V IO (P0 P1 P2 P8 P9 P12 P16) x 7
7. 3.3V I2C x 2
8. 5V I2C x 1
9. Large Size LED Car Lights x 2
10. RGB Ambient Lights x 4
11. Line-tracking Sensor x 5
12. Line-tracking Sensor with One-key Calibration
13. IR Receiver x 1
14. SRO4 Ultrasonic Module x 1
15. Dimension: 136mm×65mm/5.35×2.56"
16. Programming Platform: Mind+, MakeCode

Board Overview for Maqueen V1.0

Board Overview for Maqueen V2.0

MBT0021-EN (AA Battery Version): MBT0021-EN-18650(18650 Version):

Battery Usage and Charging

The Maqueen PlusV2 AA battery version supports 1.5V AA batteries and 1.2V Ni-MH rechargeable AA batteries. Please be careful not to use AAA batteries. AA batteries are available in most supermarkets. It should be noted that the 1.5V alkaline battery is disposable and cannot be recharged, otherwise it may explode or catch fire.

Ni-MH rechargeable batteries are safer than lithium batteries and are less prone to explosion and fire. The voltage is 1.2V per cell. The size of the Ni-MH battery is the same as that of the AA alkaline battery. There is no onboard charging circuit designed on Maqueen Plus V2.0, considering that it is dangerous if the user accidentally recharges the alkaline battery. Therefore, if you need to use Ni-MH batteries, you need to buy Ni-MH rechargeable batteries and charger sets.

Note: Please pay attention to the polarity when installing battery.

If you have purchased the Maqueen V2 with the 18650 battery version, you can use the included battery strap to wrap around the battery.

Turn off the battery board, close the switch, and place the battery in the battery compartment according to the corresponding positive and negative poles.When the need arises to remove the battery, grasp the battery strap enveloping it and gently extract it.

Note: It is prohibited to pry the 18650 battery from the battery compartment using screwdrivers, tweezers, or other metal tools. When installing the battery, pay attention to the positive and negative pole directions, and when removing the battery, the battery board should be turned off.

3.Introduction to Teaching Contents and Documents

An advanced version of micro:Maqueen Lite(4.0), micro:Maqueen Plus comes with a larger and more stable chassis, and more function integrated, supporting HuskyLens AI vision sensor. 15 teaching projects are provided for students to learn robotics as well as algorithms & programming and computing system in practice. Moreover, there are 6 structure expansion projects and 6 AI projects that enable students to study internet and data analysis when combining Maqueen Plus with Mechanic Accessories or HuskyLens sensor.

Refer to CSTA curriculum standard, the course catalog and field distribution are shown below:

3.1 Documents

micro:Maqueen Plus V2

Click to download the tutorial MBT0021-EN-Maqueen Plus V2 Getting started Tutoria.pdf

4. MakeCode Graphical Programming for Maqueen V2.0

Quick Start Guide

Step 1. Install battery

Step 2. Plug in the ultrasonic sensor

2

Step 3. Insert the micro:bit board

Step 4. Connect the board to a PC via USB cable

Step 5. Click the sample program link, select "Edit" on the opened webpage, and download program into micro:bit.

Sample Program: https://makecode.microbit.org/_dshFJ6f3gfaK

5 Download Program

Step 6. Unplug the USB cable and turn on the power switch.

After the above operations, we downloaded an automatic obstacle avoidance robot program to the board. Put Maqueen Plus on the ground, it will automatically drive forward and automatically detect whether there are obstacles within 30cm in front. If there are obstacles, Maqueen Plus will automatically turn around to avoid obstacles and continue driving.

4.1 Light-controlled Maqueen Plus

The following program calls the light sensor of the micro:bit motherboard. Normally, the car is in a stopped state, and the RGB light at the bottom lights up in color. When the flashlight illuminates the front side of the micro:bit, the car goes forward, the bottom RGB light goes out, and the front lights turn on.

The value of the light sensor is an analog value between 0 and 255, which is used to indicate the intensity of light. In the program, we take a light intensity value of 100 as the demarcation point. When the light intensity is greater than 100, the car is started, otherwise, the car is stopped.

Program Link: https://makecode.microbit.org/_Wue51de0tKyU

4.2 Sound-controlled Maqueen Plus(only supports micro:bit V2.0)

The following program calls the sound sensor on the micro:bit V2 motherboard. When you clap your hands, the car starts to drive and turns on the lights. When you clap your hands again, the car stops and turns off the lights. Repeat in this way.

In the program, when the sound is detected to be greater than 100, the state of a Boolean value is reversed. Next, the program checks whether the Boolean value is true, if it is true, the car moves forward, if it is false, the car stops.

Program Link: https://makecode.microbit.org/_hcsETx7EyV5C

4.3 obstacle Avoidance Robot

The function realized by the following program is: Maqueen Plus detects whether there is an obstacle in front of it during driving. If there is an obstacle about 30cm ahead, turn to avoid the obstacle and continue driving.

In the program, the distance read by the ultrasonic is assigned to a variable, and then it is judged that if the value of this variable is less than 30, the turning action is performed for one second. After turning for one second, it will continue to detect whether the distance is less than 30cm. If there are no obstacles 30cm ahead, the car will go straight ahead.

Program Link: https://makecode.microbit.org/_DKCHUJgTgJFo

After the above procedure is executed, you will find that the car always turns in one direction after encountering an obstacle. Below we will improve the program as follows, let the car encounter obstacles and randomly choose a turning direction to continue driving.

In the program, a module that generates integers randomly is used to randomly produce 1 or 2. If it is judged that the random number is 1, then turn right, if the random number is 2, then turn left.

Program Link: https://makecode.microbit.org/_RYRVeb318fVt

4.4 Line-tracking Robot

The function of the following program is: put the car on the circular black line map, the car will use the three line-tracking sensor probes set at the bottom to detect whether the car is driving on the black line. If it deviates from the black line, the car will correct its driving direction in real time so that the car will always follow the black line.

There are 5 line-tracking sensor probes in Maqueen Plus V2. In this program, three probes, L1, R1, and M, are used to detect black lines. L2 and R2 are not used yet.

When the line-tracking probe detects a black line, the output value is 1, and when it detects a white line, the output value is 0. With this feature, three line-tracking sensors can be used to detect the black lines, and the status of multiple probes can be used to determine the position of the black line in real time and how the car should turn to correct deviation.

Program Link: https://makecode.microbit.org/_KhA1VvMi70rp

In the above procedure, we did not use the two probes L2 and R2 on the two sides. If the car is driven out by mistake, it will be difficult to return to find the black line to continue driving. In the following procedure, we will use five probes and add another layer of detection on the left and right sides, so that the car can return in time after it finds that it was on the wrong path.

Program Link: https://makecode.microbit.org/_WVc5uwLsq9xE

4.5 IR-controlled Maqueen Plus

First, let us get familiar with the infrared remote control and key values. Each button on the infrared remote control corresponds to a unique key value. The key value has two systems of numeration, hexadecimal and decimal. In Maqueen PlusV2, we use decimal. as the picture shows:

6-5

Example 1: In the following example, we use the four buttons 2, 4, 6, and 8 of the infrared remote control to control the car to go forward, turn left, turn right, and back separately. At the same time, we will let the bottom RGB lights and LED car lights light up.

Program Link: https://makecode.microbit.org/_7aThcFKAjDqL

Download the program to the micro:bit, press the “2” button of the infrared remote control, and Maqueen PlusV2 will drive forward. Press the “4” button, Maqueen PlusV2 turns to the left, press the “6” button, Maqueen PlusV2 turns to the right, press the “8” button, Maqueen PlusV2 drives backwards.

However, during the operation, we found two problems:

1.When I let the car turn, as long as I press the “4” button or the “6” button, the car will spin on the spot, the control feels inflexible, and it does not conform to the actual vehicle control method.

2.When the car is moving backwards, press the “2” button to make the car move forward, and the car will fall backward due to the reaction force. We try to optimize the code and operating experience:

Program Link: https://makecode.microbit.org/_MsvFPPVWKbqT

In this example, we have made some changes to the remote control method. When the “4” key (key value 20) or “6” key (key value 22) is pressed, the car is only allowed to turn for a short time (200 milliseconds). In this way, we press once, the car rotates a bit, and then continues straight ahead. If we need a big turn, press it a few more times. When backing, the car will not go back quickly, which will cause the car to roll over due to inertia. Therefore, we changed the back function of pressing the “8” key (key value 25) to stop. In this program, we did not write a part of the program to make the car back. When you write your own program, try to use another button to realize the back function.

4.6. Control Maqueen Plus by Remote Controller

Here, another way and product to control Maqueen will be used: remote control handle.

Program Link: https://www.dfrobot.com.cn/goods-1674.html

Wiki Link: https://wiki.dfrobot.com/Micro_bit_Gamepad_Expansion_Board_SKU__DFR0536

Remote Controller

Another micro:bit motherboard needs to be installed on the remote control handle, and the two motherboards communicate through the wireless network to realize the remote control function. Compared with infrared, wireless communication has the characteristics of no directionality and long distance. Next we try to write a remote control car. This time you need to program two motherboards. The motherboard of the car terminal: write the receiving and executing program. Handle end: need to write a program to send instructions.

Remote Controller Program Link: https://makecode.microbit.org/_Ew9VCh414YW3

Controller Code

Maqueen Plus Car Program Link: https://makecode.microbit.org/_bTPhA5JDs6mA

Car Code

Download the corresponding programs to the microbit motherboard on the handle side and the microbit motherboard on the car side respectively. Turn on the power of the handle and the car. Move the joystick on the left side of the handle to control the forward, backward, left and right turn of the car.

However, you may find a problem, we can only control the direction of the car, not the speed of the car. Now let's update the program so that the remote control handle can control both the direction and the speed.

Remote Controller Program Link: https://makecode.microbit.org/_99UJEH9hahwF

Controller Code 2

Maqueen Plus Car Program Link: https://makecode.microbit.org/_evzJtbUqoLFt

Car Code 2

Download the corresponding programs to the micro:bit on the handle side and the microbit motherboard on the car side respectively. Turn on the power of the handle and the car. Gently push the joystick forward, Maqueen Plus will gradually start and speed up. Try turning around and going backward. The speed in each direction is related to the angle of the joystick. You can not only control the direction of the car, but also the speed of the car.

Calibration

The line-tracking sensor has been calibrated before leaving the factory, and you do not need to calibrate it again. Just like the reset button of digital products, you don't need to use it in most cases. Incorrect calibration methods can also cause the line-tracking sensor to fail.

If you find that the line-tracking sensor does not recognize the black lines that can be recognized normally, then you can try to calibrate it. Methods as below:

  1. Place the car on the black block of the map which delivered with the product, and make sure that the 5 sensors are in the black area. as the picture shows:
Map
  1. Long press the calibration button for about 1 second. At this time, the car lights flash and the calibration is completed.
Calibraiton Done
  1. Check the calibration result: when the calibration done, place the line-tracking sensor in the black area, the line-tracking indicator is on, and the indicator is off in the white area, indicating that the calibration is correct.

6. Buzzer Switch for Maqueen V2.0

When you don't need to use the buzzer, but you want to use the P0 port, or use the micro:bit V2 motherboard, you can use this switch to turn off the buzzer. The picture shows the state of turning on the buzzer. Flick to the other side to turn off the buzzer sound.

Buzzer Switch

7. Install HuskyLens Camera for Maqueen V2.0

  1. Install the two copper pillars delivered by the product in the position as shown in the figure.
  1. Fix the arc-shaped bracket (the bracket and mounting screws are provided with the HuskyLens product) on the copper column with screws.
2
  1. Install the other bracket (the bracket and mounting screws are provided with the HuskyLens product)
3
  1. Install HuskyLens AI camera
4
  1. Plug in the AI camera connection
5
  1. Installation done.
6

8. Install Maqueen Mechanic Kit for Maqueen V1.0 and V2.0

  1. Install the delivered copper pillar at the position shown in the figure.

  2. Install the assembled Maqueen Mechanic on the copper column with screws.

  3. Plug the connecting wire of the servo into any 5V port of P0 or P1 or P2 on the back, and be careful not to plug it in the reverse direction.

Mechanic Kit

9.Product Configuration List for Maqueen V2.0

Image List
1.Maqueen Plus V2 (AA battery) Vehicle body x 1 (Note: the motor, vehicle wheel, support wheel, and battery panel have been installed before delivery)
2.H-SR04 Ultrasonic Sensor x 1
3.Line-tracking Map x 1

More Documents

Documents for micro:Maqueen Plus V1

Click to view online tutorial https://edu.dfrobot.com/course-655.html
Click to download the tutorial 1. Maqueen Plus V1 Getting Started Tutorial-MakeCode-EN-V1.0 &Maqueen Plus V1 Getting Started Tutorial-Mind+-EN-V1.0
2.Maqueen Plus V1 Advanced Tutorial-MakeCode-EN & Maqueen Plus V1 Advanced Tutorial-Mind+-EN
3.maqueen Plus V1 AI vision Getting Started Tutorial-Makecode-EN & maqueen Plus V1 AI vision Getting Started Tutorial-Mind+-EN
4.Manual Maqueen Plus V1+ HaskyLens-mind+(Spanish) & maqueen plus V1 -makecode (Korean)
Product Pictures MBT0021-EN V1 product pictures.rar

Documents for micro:Maqueen Plus V2

Product PicturesMBT0021-EN V2 product pictures.rar

DFshopping_car1.png Get micro:Maqueen Plus V2 from DFRobot Store or DFRobot Distributor.

FAQ

For any questions, advice or cool ideas to share, please visit the DFRobot Forum.

Turn to the Top