Approved content

The content below is provided by a partner.

CytronTechnologies/pxt-zoombit 0.1.1 GitHub

Cytron ZOOM:BIT Extension for Microsoft MakeCode

Cytron ZOOM:BIT Robot Car Kit for micro:bit comes with a booklet covering 9+1 hands-on building and coding lessons. You will follow the intuitive instructions guide to Build Your Own Robot and explore programming basics in a fun and engaging manner.

ZOOM:BIT

Educational Resources

Visit ZOOM:BIT Resource Hub if you need further assistance with ZOOM:BIT Robot Car Kit and its lessons.

Adding the Extension in MakeCode Editor

Examples

Headlights

Turn on headlights when button A is pressed, turn off when button B is pressed.

input.onButtonPressed(Button.A, function () {
    zoombit.setHeadlight(HeadlightChannel.All, zoombit.digitalStatePicker(DigitalIoState.On))
})
input.onButtonPressed(Button.B, function () {
    zoombit.setHeadlight(HeadlightChannel.All, zoombit.digitalStatePicker(DigitalIoState.Off))
})

DC Motors

Move robot forward at speed 128 when button A is pressed, brake/stop the robot when button B is pressed.

input.onButtonPressed(Button.A, function () {
    zoombit.move(MotorDirection.Forward, 128)
})
input.onButtonPressed(Button.B, function () {
    zoombit.brake()
})

Maker Line Sensor

Show line position on the LED matrix display. Please take note of the position of the micro:bit on ZOOM:BIT robot.

basic.forever(function () {
    if (zoombit.isLineDetectedOn(LinePosition.Left2)) {
        basic.showLeds(`
            . . . . #
            . . . . #
            . . . . #
            . . . . #
            . . . . #
            `)
    } else if (zoombit.isLineDetectedOn(LinePosition.Left1)) {
        basic.showLeds(`
            . . . # .
            . . . # .
            . . . # .
            . . . # .
            . . . # .
            `)
    } else if (zoombit.isLineDetectedOn(LinePosition.Center)) {
        basic.showLeds(`
            . . # . .
            . . # . .
            . . # . .
            . . # . .
            . . # . .
            `)
    } else if (zoombit.isLineDetectedOn(LinePosition.Right1)) {
        basic.showLeds(`
            . # . . .
            . # . . .
            . # . . .
            . # . . .
            . # . . .
            `)
    } else if (zoombit.isLineDetectedOn(LinePosition.Right2)) {
        basic.showLeds(`
            # . . . .
            # . . . .
            # . . . .
            # . . . .
            # . . . .
            `)
    } else {
        basic.clearScreen()
    }
})

Ultrasonic Sensor

Show Heart when an object is detected less 15cm away from the ultrasonic sensor, otherwise show Small Heart

basic.forever(function () {
    if (zoombit.readUltrasonic() < 15) {
        basic.showIcon(IconNames.Heart)
    } else {
        basic.showIcon(IconNames.SmallHeart)
    }
})

Supported targets

Open this page at https://cytrontechnologies.github.io/pxt-zoombit/

makeCodeRender(“{{ site.makecode.home_url }}”, “{{ site.github.owner_name }}/{{ site.github.repository_name }}”);

zoombit=github:CytronTechnologies/pxt-zoombit#v0.1.1