Skip to main content

Library used for helping developing for the BBC microbit easier.

Project description

MicroBitTools

MicroBitTools is a package for making BBC MicroBit development easier.

Installation

Run the following line in the terminal/command prompt to install:

pip install MicroBitTools

Examples

This one is used to flash to the MicroBit

from MicroBitTools import flash
flash("PythonFilePathHere", "MicroBitDirectoryHere")

This one is used to flash whole folders

from MicroBitTools import flashF
flashF("PythonFilePathHere", "MicroBitDirectoryHere")

Serial system (Still in early development)

First, let's create a SerialSystem

import MicroBitTools as mbt
mbs = mbt.SerialSystem()

Then, let's move the SerialSystem on to the MicroBit

mbs.readyMicroBit()

After that, we are going to create a loop that is printing the data from the MicroBit

while True:
    print(mbs.read())

You'r code should look like this:

import MicroBitTools as mbt
mbs = mbt.SerialSystem()

mbs.readyMicroBit() # Load 

while True: # Infinite loop
    print(mbs.read()) # Print data from MicroBit

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

MicroBitTools-2.1.2.tar.gz (16.0 kB view hashes)

Uploaded Source

Built Distribution

MicroBitTools-2.1.2-py3-none-any.whl (16.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page