Skip to main content

Python API for Wave by Genki

Project description

Wave by Genki

Wave is a unique smart ring manufactured and maintained by Genki. This repository contains the official Python API interface for Wave, arguably the easiest way to work with data from motion sensors in Python.

The API provides access to Wave's onboard sensor data, as well as processed motion data using proprietary algorithms in an accessible form factor.

For more details, please refer to the technical documentation.

Wave

Installation

This package has been tested with python 3.8 on both macOS and Linux. Installation is straight forward.

python -m pip install genki-wave

Note that bluez is a requirement on Linux-based systems.

Setting up the Wave ring

Make sure you've installed the latest firmware on your Wave by following these instructions.

To turn Wave on press the middle button, to turn it off hold the top and bottom buttons down for one second.

Refer to the technical documentation for a detailed overview of how to use and interface with the API.

Quickstart

General

Turn Wave on and make sure it is not connected. To find the Bluetooth address of the nearest Wave, run the following

from genki_wave.discover import run_discover_bluetooth

run_discover_bluetooth()

And the following example uses a callback that prints out which button has been pressed, along with the sensor reading every 5 seconds.

from genki_wave.asyncio_runner import run_asyncio_bluetooth
from genki_wave.callbacks import ButtonAndDataPrint

callbacks = [ButtonAndDataPrint(print_data_every_n_seconds=5)]
ble_address = ""  # Address of the Wave ring, found in the previous step
run_asyncio_bluetooth(callbacks, ble_address)

Further examples are in the examples folder.

MIDI

The simples way to start is connecting Wave as a BLE MIDI device and running examples/run_midi.py. This example only depends on pygame and allows you to receive data from Wave in standalone mode.

Known issues

  • bleak the Python Bluetooth library, can only connect to devices that are not connected to the computer. After pairing Wave to a Linux machine Wave tends to connect automatically quite aggressively and cannot be accessed via bleak. One solution is to use bluetoothctl to disconnect before pairing with genki-wave.
  • Wave needs to be off and disconnected before receiving any data via the serial port.
  • There is an error when you have Wave connected via Bluetooth and use asyncio to receive data. If you kill the program, e.g., with a keyboard interrupt, Wave stays connected and has an invalid state. For the time being you can hold the top button for a few seconds to properly exit the program.

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

genki-wave-0.5.3.tar.gz (21.2 kB view hashes)

Uploaded Source

Built Distribution

genki_wave-0.5.3-py3-none-any.whl (24.7 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