Python Package for interfacing the bluetooth IMU module for CreaTe M8 BME.
Project description
CreaTeBME
Python Package for interfacing the bluetooth IMU module for CreaTe M8 BME.
Installation
To install the latest stable version simply run
pip install CreaTeBME
Example
A simple example to connect to a sensor and read and print the data for 10 seconds.
import time
from CreaTeBME import SensorManager
# Create a sensor manager for the given sensor names using the given callback
manager = SensorManager(['0BE6'])
# Start the sensor manager
manager.start()
while True:
measurements = manager.get_measurements()
for sensor, data in measurements.items():
print(sensor, len(data))
# Stop the sensor manager
manager.stop()
Usage
SensorManager (asyncio wrapper)
This package uses Bleak for the bluetooth communication. Bleak uses asyncio, thus this package has to use this too. To ease usage, a wrapper has been made for people not experienced with asyncio. This wrapper also automates the connection of the sensors over bluetooth.
To connect to the sensors, simply initialize a SensorManager
object with the sensor names.
from CreaTeBME import SensorManager
manager = SensorManager(['A1B2', 'C3D4'])
To get the IMU measurements the `get_measurements()' method can be used. This returns the measurements received since the last time this method was called.
measurements = manager.get_measurements()
The data returned by this method is a dictionary containing a list for each sensor with the received measurements. A single measurement is a list of 6 floats. The measurements are structured like this
- [0:2] = x,y,z of accelerometer in (g).
- [3:5] = x,y,z of gyroscope in (deg/s).
To start reading data from the sensors call the start
method of the SensorManager
.
manager.start()
Make sure to also call the stop
method when exiting your program.
manager.stop()
Manual Connection
⚠️Understanding of asyncio required⚠️
Another way of connecting IMU sensors is to manually create ImuSensor
objects.
This can be done by specifying the BLE device that should be connected as a sensor.
from CreaTeBME import ImuSensor
sensor = ImuSensor(device)
The device has to be a Bleak BLEDevice object that can be acquired using the discover
method of BleakScanner
.
from bleak import BleakScanner
from CreaTeBME import ImuSensor
async def connect():
devices = await BleakScanner.discover(return_adv=True)
sensor = ImuSensor(devices[0])
API reference
For the API reference look here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for CreaTeBME-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71a2ba59907f2706812cf158cf33e066cafe82516f83ff86532e18cbae0ad9de |
|
MD5 | 169cd3a155df92ade898e68f915c48cb |
|
BLAKE2b-256 | 61ff1d064e9c16202a9208a322692650e247d46c42a9c1bb4cbd3a127edbef0d |