pimoroni / micropython-envirobit

MicroPython library for the Pimoroni enviro:bit
https://shop.pimoroni.com/products/enviro-bit
MIT License
7 stars 6 forks source link

MicroPython envirobit:bit library for the BBC micro:bit

Installing

enviro:bit consists of:

Files are supplied for each of these features, and you can pick and choose what to use in your project.

Copy the driver files from you need from the library/ folder into your "mu_code" folder, this might be in:

Create a new blank file in Mu for your project, leave it blank and Flash it to your micro:bit with the Flash button. You can close this for now.

Create another new file, save this one as "main.py" and keep it open.

Now open the "Files" dialog (you might have to close the "Repl" first) and drag and drop main.py and the driver .py files from the right pane, to the left pane.

When you reset your micro:bit, it will load main.py- so you can "import" the libraries and start writing your code here!

Function Reference

bme280

For temperature, pressure and humidity readings you must use the bme280 driver. First initialise it like so:

import bme280
bme = bme280.bme280

Your class instance, bme, will now have the following methods:

sound

For sound readings you must use the sound driver. First initialise it like so:

import sound
sound = sound.sound()

Your class instance, sound, will now have the following methods:

tcs3472

For tcs3472 readings you must use the tcs3472 driver. First initialise it like so:

import tcs3472

light_sensor = tcs3472.tcs3472() 

Your class instance, light_sensor, will now have the following methods: