Chapter 1 of KitiBot-Microbit

From Waveshare Wiki
Jump to: navigation, search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Chapter 1 LED Matrix

Instruction of Graphic Programming Website


Open makecode webiste on browser, we recommend to use Chorme. The page will be like the figure below after opening. There are four areas, the top one is menu bar, the center one is Blocks area, left one is simulate demonstration area and the right one is block operation/programming area.

Microbit makecode.jpeg

We first learn some basic blocks

Microbit makecode basic.png

Microbit makecode basic-more.png

Basic blocks are mainly used for some basic operation to control LED matrix of micro:bit.

There is a 5x5 LED matrix on front side of micro:bit, which is made by 25 red LEDs. The matrix can be used to display numbers, strings and icons.

Start block.png:the program included in this block will run at first after start.

Forever block.png:The program included in this block will run all the time after start.

Led matrix block.png: Will display LEDs as defined, click little blocks to light on/of corresponding LEDs

Show number.png: Display numbers, if the numbers larger than 10, it will rolling-display

Show string.png: Rolling-display strings

Show icon.png: Display icon, click the little triangle for more icons.

Show icons.png

Clear screen.png:Clear the screen by turning off all LED

Show arrow.png:Display arrows, click the little triangle for more arrows


Lighting LED


Let's try to light LEDs. Drag "show leds" block to the right side and put it on "on Start" block. Click leds to light them as you want. You can see that the micro:bit board on simulate demonstration area will light as you do.

Light leds.gif

Then we try to flash the program to micro:bit to see actual effect. Connect your micro:bit to PC, the micro:bit will be recognized as an U drive.

Microbit drive.png

Click Download to flash program to the U drive. You can also download it to other path, and then copy the hex file to micro:bit. It is very easy to do.

Download to microbit.gif

Heart Beating


Heartbeat code.gif

This demo displays a big heart icon first, and wait for 100ms, then display a small heart icon for 100ms. Put this demo to the forever block, it will keep the loop: big heart to small heart, looks like heart beating.

4. Display Strings


String display code.gif

Analysis: Create a new progect, and drag the blocks which you don't need to left (delete). Use the String blocks to display string "hello!:. and set it display for per second.

With demos above, you can study how to use micro:bit to program. And we will describe more functions of micro:bit in next chapters and show you how to control the KitiBot.

Related Pages