Skip to main content

Python SDK for Mudra with native library support

Project description

Mudra API Python

Python SDK for Mudra with native library support. This SDK enables you to connect to and interact with Mudra devices via Bluetooth Low Energy (BLE).

For more detailed documentation, visit: https://wearable-devices.github.io/#welcome

Features

  • 🔌 Bluetooth Low Energy (BLE) Support - Connect to Mudra devices wirelessly
  • 📱 Cross-Platform - Supports Windows, macOS
  • 🎯 Device Discovery - Scan and discover nearby Mudra devices
  • 📊 Multiple Sensor Data Types - SNC, IMU (Accelerometer/Gyroscope), Pressure, Navigation, Gestures
  • 🎮 Firmware Targets - Control where data is sent (App, HID)
  • 🤚 Hand Configuration - Set device for left or right hand
  • 🔄 Event-Driven Architecture - Use delegates for handling device events
  • 🔐 Cloud License Management - Retrieve licenses from cloud

Requirements

  • Python 3.7 or higher
  • Bluetooth-enabled computer
  • Mudra device

Installation

pip install mudra-sdk

Platform Support

The SDK includes native libraries for the following platforms:

  • Windows
  • macOS

The appropriate library is automatically loaded based on your platform.

API Reference

MudraDelegate Interface

Implement this interface to handle device events:

  • on_device_discovered(device: MudraDevice) - Called when a device is discovered
  • on_mudra_device_connected(device: MudraDevice) - Called when a device connects
  • on_mudra_device_disconnected(device: MudraDevice) - Called when a device disconnects
  • on_mudra_device_connecting(device: MudraDevice) - Called when a device is connecting
  • on_mudra_device_disconnecting(device: MudraDevice) - Called when a device is disconnecting
  • on_mudra_device_connection_failed(device: MudraDevice, error: str) - Called when connection fails
  • on_bluetooth_state_changed(state: bool) - Called when Bluetooth state changes

Mudra Class

Main entry point for the SDK.

  • set_delegate(delegate: MudraDelegate) - Set the delegate for handling device events
  • get_license_for_email_from_cloud(email: str) - Retrieve licenses from cloud for the given email
  • scan() - Start scanning for Mudra devices (async)
  • stop_scan() - Stop scanning for devices (async)

Basic Setup

import asyncio
from mudra_sdk import Mudra, MudraDevice
from mudra_sdk.models.callbacks import MudraDelegate

# Create Mudra instance
mudra = Mudra()

# Retrieve license from cloud (required for full functionality)
mudra.get_license_for_email_from_cloud("your-email@example.com")

# Implement delegate to handle device events
class MyMudraDelegate(MudraDelegate):
    def on_device_discovered(self, device: MudraDevice):
        print(f"Discovered: {device.name} ({device.address})")

    def on_mudra_device_connected(self, device: MudraDevice):
        print(f"Device connected: {device.name}")

    def on_mudra_device_disconnected(self, device: MudraDevice):
        print(f"Device disconnected: {device.name}")

    def on_mudra_device_connecting(self, device: MudraDevice):
        print(f"Device connecting: {device.name}...")

    def on_mudra_device_disconnecting(self, device: MudraDevice):
        print(f"Device disconnecting: {device.name}...")

    def on_mudra_device_connection_failed(self, device: MudraDevice, error: str):
        print(f"Connection failed: {device.name}, Error: {error}")

    def on_bluetooth_state_changed(self, state: bool):
        print(f"Bluetooth state changed: {'On' if state else 'Off'}")

# Set the delegate
mudra.set_delegate(MyMudraDelegate())

Scanning for Devices

mudra = Mudra()

async def start():
    mudra.set_delegate(MyMudraDelegate())
    
    # Start scanning for Mudra devices
    await mudra.scan()
    
    # Wait for devices to be discovered
    await asyncio.sleep(10)

async def stop():
    # Stop scanning when done
    await mudra.stop_scan()

MudraDevice Class

Represents a discovered or connected Mudra device.

Connection Methods

  • connect() - Connect to the device (async)
  • disconnect() - Disconnect from the device (async)

Data Feature Callbacks

All data callbacks can be enabled by passing a callback function, or disabled by passing None.

  • set_on_snc_ready(callback) - Enable/disable SNC (Sensor Neural Control) data (async)

    • Callback signature: (timestamp: int, data_list: List[float], frequency: int, frequency_std: float, rms_list: List[float]) -> None
  • set_on_imu_acc_ready(callback) - Enable/disable IMU Accelerometer data (async)

    • Callback signature: (timestamp: int, data_list: List[float], frequency: int, frequency_std: float, rms_list: List[float]) -> None
  • set_on_imu_gyro_ready(callback) - Enable/disable IMU Gyroscope data (async)

    • Callback signature: (timestamp: int, data_list: List[float], frequency: int, frequency_std: float, rms_list: List[float]) -> None
  • set_on_pressure_ready(callback) - Enable/disable pressure sensing (async)

    • Callback signature: (pressure_data: int) -> None
    • Pressure values range from 0 to 100
  • set_on_navigation_ready(callback) - Enable/disable navigation delta data (async)

    • Callback signature: (delta_x: int, delta_y: int) -> None
  • set_on_gesture_ready(callback) - Enable/disable gesture recognition (async)

    • Callback signature: (gesture_type: GestureType) -> None
  • set_on_button_changed(callback) - Enable/disable Air Touch Button change notifications (async)

    • Callback signature: (air_touch_button: AirMouseButton) -> None
  • set_on_charging_state_changed(callback) - Enable/disable charging state change notifications (async)

    • Callback signature: (is_charging: bool) -> None
  • set_on_battery_level_changed(callback) - Enable/disable battery level change notifications (async)

    • Callback signature: (level: int) -> None
    • Battery level values range from 0 to 100

Note: Due to current firmware limitations, set_on_navigation_ready cannot be used together with set_on_imu_acc_ready or set_on_imu_gyro_ready. Enabling navigation may prevent IMU accelerometer or gyroscope data from working as expected, and vice versa. Choose either navigation deltas or raw IMU data (accelerometer/gyroscope) for a given device/session.

Firmware Configuration

  • set_firmware_target(target: FirmwareTarget, active: bool) - Enable/disable firmware targets (async)

    • Targets: FirmwareTarget.navigation_to_app, FirmwareTarget.gesture_to_hid, FirmwareTarget.navigation_to_hid
  • set_hand(hand_type: HandType) - Set device hand configuration (async)

    • Options: HandType.left, HandType.right
  • set_air_touch_active(active: bool) - Enable/disable embedded AirTouch feature (async)

Device Properties

  • firmware_status - Access to FirmwareStatus object with current device state
    • Properties include: is_snc_enabled, is_acc_enabled, is_gyro_enabled, is_pressure_enabled, is_navigation_enabled, is_gesture_enabled, is_air_touch_enabled, is_sends_navigation_to_app_enabled, is_sends_gesture_to_hid_enabled, is_sends_navigation_to_hid_enabled

Device Information Methods

  • get_is_charging() -> bool - Get the current charging state of the device
  • get_serial_number() -> Optional[int] - Get the device serial number (returns None if not available)
  • get_firmware_version() -> Optional[str] - Get the device firmware version (returns None if not available)

Enums

  • FirmwareTarget - Firmware target options: navigation_to_app, gesture_to_hid, navigation_to_hid
  • HandType - Hand configuration: left, right
  • GestureType - Gesture recognition types
  • AirMouseButton - Air Touch Button states

Getting Started

Connecting to a Device

# Store discovered devices
discovered_devices = []

class MyMudraDelegate(MudraDelegate):
    def on_device_discovered(self, device: MudraDevice):
        discovered_devices.append(device)
        print(f"Discovered: {device.name}")

async def main():
    mudra = Mudra()
    mudra.set_delegate(MyMudraDelegate())
    
    # Start scanning
    await mudra.scan()
    await asyncio.sleep(5)  # Wait for discovery
    
    # Connect to the first discovered device
    if discovered_devices:
        device = discovered_devices[0]
        await device.connect()
        print(f"Connected to {device.name}")
        
        # ... use the device ...
        
        # Disconnect when done
        await device.disconnect()

asyncio.run(main())

Current Connection Limitation

Important: At the moment, the only supported way to connect to a MudraDevice is by first discovering it via scan(). After your application closes, you must unpair the Mudra device from the operating system’s Bluetooth settings before you can discover and reconnect to it again using scan().
This is a temporary limitation and will be fixed in an upcoming release.

Usage Examples

SNC (Sensor Neural Control) Data

Enable SNC data to receive neural control signals with RMS values:

def on_snc_ready(timestamp: int, data_list: list, frequency: int, frequency_std: float, rms_list: list):
    print(f"SNC - Frequency: {frequency} Hz, RMS: {rms_list}")

async def enable_snc():
    await device.set_on_snc_ready(on_snc_ready)

async def disable_snc():
    await device.set_on_snc_ready(None)

IMU Data (Accelerometer & Gyroscope)

Enable IMU data to receive motion sensor information:

def on_imu_acc_ready(timestamp: int, data_list: list, frequency: int, frequency_std: float, rms_list: list):
    print(f"IMU Acc - Frequency: {frequency:.2f} Hz")

def on_imu_gyro_ready(timestamp: int, data_list: list, frequency: int, frequency_std: float, rms_list: list):
    print(f"IMU Gyro - Frequency: {frequency:.2f} Hz")

async def enable_imu():
    await device.set_on_imu_acc_ready(on_imu_acc_ready)
    await device.set_on_imu_gyro_ready(on_imu_gyro_ready)

async def disable_imu():
    await device.set_on_imu_acc_ready(None)
    await device.set_on_imu_gyro_ready(None)

Pressure Data

Enable pressure sensing to receive real-time pressure data from the device:

def on_pressure_ready(pressure_data: int):
    print(f"Pressure: {pressure_data}")  # Range: 0-100

async def enable_pressure():    
    await device.set_on_pressure_ready(on_pressure_ready)

async def disable_pressure():
    await device.set_on_pressure_ready(None)

Navigation Data

Enable navigation to receive cursor movement deltas:

from mudra_sdk.models.enums import FirmwareTarget

def on_navigation_ready(delta_x: int, delta_y: int):
    print(f"Navigation delta: X={delta_x}, Y={delta_y}")

async def enable_navigation():
    # Enable navigation data to be sent from firmware to your app
    await device.set_firmware_target(FirmwareTarget.navigation_to_app, True)

    # Register navigation callback (delta_x, delta_y will be received only if
    # is_sends_navigation_to_app_enabled is True in the device firmware status)
    await device.set_on_navigation_ready(on_navigation_ready)

async def disable_navigation():
    # Disable navigation callback
    await device.set_on_navigation_ready(None)
    # Optionally disable sending navigation data from firmware to your app
    await device.set_firmware_target(FirmwareTarget.navigation_to_app, False)

Gesture Recognition

Enable gesture recognition to detect hand gestures:

from mudra_sdk.models.enums import GestureType

def on_gesture_ready(gesture_type: GestureType):
    print(f"Gesture detected: {gesture_type}")

async def enable_gesture():
    await device.set_on_gesture_ready(on_gesture_ready)

async def disable_gesture():
    await device.set_on_gesture_ready(None)

Air Touch Button

Monitor Air Touch Button state changes:

from mudra_sdk.models.enums import AirMouseButton

def on_button_changed(air_touch_button: AirMouseButton):
    print(f"Air Touch Button: {air_touch_button}")

async def enable_button_monitoring():
    await device.set_on_button_changed(on_button_changed)

async def disable_button_monitoring():
    await device.set_on_button_changed(None)

Battery Level Monitoring

Monitor battery level changes:

def on_battery_level_changed(level: int):
    print(f"Battery level: {level}%")  # Range: 0-100

async def enable_battery_monitoring():
    await device.set_on_battery_level_changed(on_battery_level_changed)

async def disable_battery_monitoring():
    await device.set_on_battery_level_changed(None)

Charging State Monitoring

Monitor charging state changes:

def on_charging_state_changed(is_charging: bool):
    status = "Charging" if is_charging else "Not charging"
    print(f"Charging state: {status}")

async def enable_charging_monitoring():
    await device.set_on_charging_state_changed(on_charging_state_changed)

async def disable_charging_monitoring():
    await device.set_on_charging_state_changed(None)

Firmware Targets

Control where firmware sends data (to your app or to HID):

from mudra_sdk.models.enums import FirmwareTarget

async def configure_firmware_targets():
    # Enable navigation data to be sent to your app
    await device.set_firmware_target(FirmwareTarget.navigation_to_app, True)
    
    # Enable gesture data to be sent to HID (Human Interface Device)
    await device.set_firmware_target(FirmwareTarget.gesture_to_hid, True)
    
    # Enable navigation data to be sent to HID
    await device.set_firmware_target(FirmwareTarget.navigation_to_hid, True)

async def disable_firmware_targets():
    await device.set_firmware_target(FirmwareTarget.navigation_to_app, False)
    await device.set_firmware_target(FirmwareTarget.gesture_to_hid, False)
    await device.set_firmware_target(FirmwareTarget.navigation_to_hid, False)

Hand Configuration

Set the device for left or right hand:

from mudra_sdk.models.enums import HandType

async def set_hand_configuration():
    # Set for left hand
    await device.set_hand(HandType.left)
    
    # Or set for right hand
    await device.set_hand(HandType.right)

Embedded AirTouch

Enable/disable the embedded AirTouch feature:

async def enable_embedded_airtouch():
    await device.set_air_touch_active(True)

async def disable_embedded_airtouch():
    await device.set_air_touch_active(False)

Device Discovery

Discover GATT services and characteristics on a connected device:

async def discover_device():
    await mudra.ble_service.discover_services_and_characteristics(device)
    print("Device discovery completed")

Checking Device Status

Access the device's firmware status to check which features are enabled:

# After connecting to a device
if device.firmware_status.is_pressure_enabled:
    print("Pressure sensing is enabled")

if device.firmware_status.is_navigation_enabled:
    print("Navigation is enabled")

if device.firmware_status.is_sends_navigation_to_app_enabled:
    print("Navigation data is being sent to app")

Accessing Device Information

Get device information such as serial number, firmware version, and charging state:

# After connecting to a device
# Get charging state
is_charging = device.get_is_charging()
print(f"Device is charging: {is_charging}")

# Get serial number (may be None if not yet available)
serial_number = device.get_serial_number()
if serial_number is not None:
    print(f"Serial number: {serial_number}")

# Get firmware version (may be None if not yet available)
firmware_version = device.get_firmware_version()
if firmware_version is not None:
    print(f"Firmware version: {firmware_version}")

Support

For issues, questions, or contributions please contact support@mudra-band.com

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

mudra_sdk-0.1.15.tar.gz (1.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mudra_sdk-0.1.15-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

File details

Details for the file mudra_sdk-0.1.15.tar.gz.

File metadata

  • Download URL: mudra_sdk-0.1.15.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for mudra_sdk-0.1.15.tar.gz
Algorithm Hash digest
SHA256 8fc67d3d61e822213f837592dfb6f84bd2d853ed2ceb9d874bfe130f3445f921
MD5 6ae36660608a885e9b18bf139bec468b
BLAKE2b-256 195b67a7a42bc3bfc95d29c6d951c3d615390b84c2c2cc95de9c5d38a5ae15f1

See more details on using hashes here.

File details

Details for the file mudra_sdk-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: mudra_sdk-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for mudra_sdk-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 ca52537c6752b55b4fae6afb9f7fe4f42ffda984ef3cba7a094eb7569cecbc87
MD5 7ae464d59cf3fff83863317b55b5fe8c
BLAKE2b-256 9b5534044174d75f1ece3db5df937ea0e29a6bef44cc7ba1a254accebd590b68

See more details on using hashes here.

Supported by

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