Approved content
The content below is provided by a partner.
This ebotics MIBO package was developed by ebotics
ebotics MIBO is your first robot with the BBC micro:bit electronic board. MIBO extends the micro:bit’s 3 GPIO ports, allowing different sensors and components to be easily attached to the micro:bit. Add the eboticsMIBO extension and program MIBO to follow a line, draw, dance, light in different colors and much more!
For more information on MIBO and you activities, please consult the following link
let strip: neopixel.Strip = null
eboticsMIBO.init_wheel(AnalogPin.P1, AnalogPin.P2)
strip = neopixel.create(DigitalPin.P0, 24, NeoPixelMode.RGB)
strip.showRainbow(1, 360)
basic.showIcon(IconNames.Heart)
basic.forever(function () {
strip.rotate(1)
basic.pause(100)
strip.show()
})
basic.forever(function () {
eboticsMIBO.freestyle(30, 90)
basic.pause(1500)
eboticsMIBO.freestyle(90, 30)
basic.pause(1500)
})
MIT
for PXT/microbit (The metadata above is needed for package search.)
eboticsMIBO=github:EBOTICS/pxt-eboticsMIBO#v1.1.1