MakeCode Quickstart Guide

Connecting to Micro:bit

1. Connecting to Armourbit

It is easier to connect to an Armourbit because they both use PH2.0 connectors.

When using KOI with an Armourbit, KOI needs an extra 5V power source.

Using the USB port on the battery box, 5V power can be supplied to KOI. (See figure below)

../../_images/armourbit_connection1-1.png

../../_images/armourbit_connection2-3.png

2. Connecting to Robotbit

As Robotbit can supply 5V power, there is no need to power KOI with an USB cable.

Please pay attention in connecting the power wires to the Robotbit.

DO NOT connect it in the wrong way.

Or KOI may not function correctly, it may even suffer damage.

Using the cable included with KOI, connect KOI to Robotbit using Dupont wires.

The Dupont wires are arranged as: Black, Red, Blue, Green

These wires correspond to: GND, 5V, P1(TX), P12(RX)

The (Blue)TX wire must be connected to an analog pin(Pin0-Pin2).
Remember to remove the buzzer jumper when Pin0 is used.

../../_images/robotbit_connection1.png

Do not connect Red to Ground and Black to 5V!!!

Ensure the connection is correct and switch the power on.

../../_images/robotbit_connection2.png

../../_images/robotbit_connection3-1.png

MakeCode Coding Tutorial

modules/functional_module/PWmodules/images/mcbanner.png

https://makecode.microbit.org

../../_images/01-13.png

Loading Extensions

../../_images/16-1.png

Copy and paste the following link to the search bar.

https://github.com/KittenBot/pxt-koi

../../_images/023.png

New block labelled KOI will be added.​

../../_images/03-16.png

Blocks Explained

This section briefly explains the functions of blocks.

Please refer to tutorials for detailed tutorial and sample codes.

KOI Initialization

../../_images/042.png

1st Block —— is used for Robotbit.

2nd Block —— is used for Armourbit.

Classifier

It is easier to understand Classifier blocks if you are already familiar with ML5 extension on Kittenblock.

Classifier is used to train and run a customized model for object/scene classification.

../../_images/051.png

Screenshots and Display

Micro SD card is required for this function to work.

The Screenshot block creates a png file and saves it onto the SD card. The name must not contain spaces.

The Display block finds the file on the SD Card then displays it on the screen for 1 second. The name must not contain spaces.

../../_images/061.png

Show Text

The print block shows a string at the specific coordinates. It shows the text for 1 second by default, this duration can be changed via delay.

../../_images/071.png

Display Orientation

Since KOI cannot detect the direction of the camera, the display orientation has to be set manually so that the image corresponds to camera direction.

There are 3 modes, Front, Back and Land. (Refer to figure below.)

../../_images/082.png

Circle Tracking

A threshold can be adjusted, a higher value can filter out more noise and interferences, but tracking difficulty increases as well.

Tracking circle returns 3 values, the coordinates of the circle as well as the radius.

../../_images/091.png

Rectangle Tracking

Similar to Circle Tracking, the threshold can be adjusted.

Rectangle Tracking returns the coordinates of the rectangle and its width and height.

../../_images/10.png

Line Tracing and Color Blob Tracing

Calibration is required before tracing lines or color blobs.

Line Tracing returns the starting and ending coordinates of the line.

Color Blob Tracing returns the coordinates of the blob and its width and height.

../../_images/111.png

Barcode/QRCode Recognition

Scans and returns the contents of the Barcode/QRCode.

The Barcode/QRCode should not be smaller than 3.5cm in width or the resoulution is too small to be recognized.

../../_images/121.png

Apriltag Recognition

Apriltags are seldomly used in Hong Kong, this tag is usually used in robots.

Apriltags Recognition returns an id and its geometric attributes.

../../_images/141.png

Face Detection

  1. Load the face model before detecting faces.

  2. Runs the model once to detect faces.

  3. Returns the coordinates of the face.

../../_images/151.png

Recording and Playing wav files

Micro SD card is required for this function to work.

This function records and plays a wav file from the SD card.

../../_images/17.png

Using the built-in Buttons

When the button is pressed, it returns 1, otherwise 0 is returned.

../../_images/02-1.png

Extension Version and Updates

There may be updates to extensions periodically, please refer to the following link to update/downgrade your extension.

Makecode Extension Update