Python bindings for the MetaWear C++ SDK by MbientLab
Project description
MetaWear Python SDK
Python SDK for creating MetaWear apps on the Linux platform. This is a thin wrapper around the MetaWear C++ API so you will find the C++ documentation and API reference useful. Also, check out the scripts in the examples folder for full sample code.
This is not the pymetawear package. That is a community developed Python SDK which you can find over here .
Install
Use pip to install the metawear package. It depends on PyWarble so ensure your target environment has the necessary dependencies installed.
pip install metawear
Usage
Import the MetaWear class and libmetawear variable from the metawear module and everything from the cbindings module.
from mbientlab.metawear import MetaWear, libmetawear
from mbientlab.metawear.cbindings import *
If you do not know the MAC address of your device, use PyWarble to scan for nearby devices.
from mbientlab.warble import *
from mbientlab.metawear import *
from threading import Event
e = Event()
address = None
def device_discover_task(result):
global address
if (result.has_service_uuid(MetaWear.GATT_SERVICE)):
# grab the first discovered metawear device
address = result.mac
e.set()
BleScanner.set_handler(device_discover_task)
BleScanner.start()
e.wait()
BleScanner.stop()
Once you have the device’s MAC address, create a MetaWear object with the MAC address and connect to the device.
device = MetaWear(address)
device.connect()
Upon a successful connection, you can begin calling any of the functions from the C++ SDK, for example, blinking the LED green.
pattern= LedPattern(repeat_count= Const.LED_REPEAT_INDEFINITELY)
libmetawear.mbl_mw_led_load_preset_pattern(byref(pattern), LedPreset.BLINK)
libmetawear.mbl_mw_led_write_pattern(device.board, byref(pattern), LedColor.GREEN)
libmetawear.mbl_mw_led_play(device.board)
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
File details
Details for the file metawear-1.0.8.tar.gz
.
File metadata
- Download URL: metawear-1.0.8.tar.gz
- Upload date:
- Size: 658.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.27.1 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80d108e8fe86b2535dd43cc5c0216775521f52f4933d8a2594676a919850e18f |
|
MD5 | c9903dd20963bd326602775224c545c5 |
|
BLAKE2b-256 | 2966f4fcc732da51431ef875a99b872ad27070c72d88533a01fe94463fec19e0 |