microbit-webble-p5js

A javascript library to interact with BBC micro:bit using web bluetooth API

View the Project on GitHub nkymut/microbit-webble-p5js

microbit-webble.js

A javascript library to interact with BBC micro:bit using web bluetooth API. lars the iceberg

Usage

To use the library, download and upload this firmware on your BBC micro:bit board.

Keep in mind that web bluetooth API are still experimental and your OS and browser might not support the feature. Read more about this here.

Please refer to the following table for the supported browsers.

Browser WebUSB  WebBluetooth
Chrome (Win/Mac) / Edge
Safari × ×
Firefox × ×
Opera
Chrome on Android
Safari on iOS × ×
Chromium on Raspberry PI _ _

This Library allows you to read and write the values of all the BLEcharacteristic exposed by the microBit board using simplified API’s.

For more info about all micro:bit ble services please refer to the official documentation.

The example folder provided contains several examples for interacting with the device.

Constructor

Properties

Functions

Examples

Check the examples folder for working examples.

Basic example

Connect your microbit to a webpage, visualize the data and change the animations on the led matrix.

micro:bit code

Try it here

web ble demo

Accelerometer Cube example

Learn how to interact with the microbit from a p5.js sketch, rotate a cube on the canva reading the accelerometer.

micro:bit code

Try it here

Lars the iceberg

Use the microBit to control Lars the iceberg. Don’t let it melt! Developed using p5.js and p5.play library.

micro:bit code

Try it here

UART Echo example

Learn how to exchange text messages between the microbit and a p5.js sketch via UART, update microBit’s LED message from the sketch.

micro:bit code

Try it here

UART LightSensor example

Learn how to receive lightsensor value from the microbit and update a p5.js sketch via UART.

micro:bit code for micro:bit v2

micro:bit code for micro:bit v1

Try it here