MicroCode not only supports programming for Microbit and Jacdac modules but also extends to programming for robots like the TabbyBot. TabbyBot is an integrated educational programming robot designed by Smallcat specifically for learning with Microbit.
NewbitArcadeShield + MicrobitV2
TabbyBot robot
TabbyBot ultrasonic module
Line-following black tape / or white paper + black marker
TabbyBot FirmwareTo enable communication between the robot and MicroCode, a dedicated firmware needs to be downloaded onto the Microbit mainboard of the TabbyBot.
After downloading the hex file, drag and drop it onto the Microbit's USB drive.
Robot Initialization SettingsWhen the Microbit mainboard is plugged into the TabbyBot and powered on:
Simultaneously press the A and B buttons on the Microbit (to switch to setting mode).
The LED matrix will display a scrolling string "radio+number".
Press either the A or B button to set this number, which is the wireless group parameter. The robot can only be controlled when its wireless group matches the one programmed in MicroCode.
The wireless group of the robot needs to be set only once. If the program is not changed subsequently, the robot will default to the last set wireless group upon startup.
Robot Programmable ResourcesBottom RGB lights: Set colors to red, green, blue, or turn off.
- Bottom RGB lights: Set colors to red, green, blue, or turn off.
Robot movements: Forward, backward, left turn, right turn, fast forward, large left turn, large right turn, stop.
- Robot movements: Forward, backward, left turn, right turn, fast forward, large left turn, large right turn, stop.
Mechanical claw open (an advanced accessory requiring additional purchase).
- Mechanical claw open (an advanced accessory requiring additional purchase).
Ultrasonic distance detection (included in TabbyBot kit).
- Ultrasonic distance detection (included in TabbyBot kit).
Line-following detection (TabbyBot comes with two line-following sensors).
- Line-following detection (TabbyBot comes with two line-following sensors).
Assuming the current wireless group of TabbyBot is set to 1:
Program the Microbit on the MicroCode controller so that the A and B buttons control the robot's movements.
Effect:
When the program starts, besides setting the wireless group to 1:
When a distance is detected and it's relatively short (since there's no '<' symbol, assume distance = 1 or 2), the robot moves backward and stops a quarter second later.
Effect:
When the program starts and the wireless group is set to 1:
The robot begins line-tracking based on the following logic:
- Moves forward when both sensors detect the black line.
- Turns left when the left sensor detects the black line (indicating the robot is veering right).
- Turns right when the right sensor detects the black line (indicating the robot is veering left).
- Continues turning left when the left sensor completely loses the black line (indicating a significant right veer).
- Continues turning right when the right sensor completely loses the black line (indicating a significant left veer).
Effect:
Comments
Please log in or sign up to comment.