Skip to main content

No project description provided

Project description

Rabboni Python SDK

Prerequisite

環境 Python 版本 3.7 以上


Installation

pip install rabboni-multi-python-sdk

or

python3 setup.py install

Usage

Rabboni 建立連線

rab = Rabboni()
asyncio.run(rab.connect())

讀取 Rabboni 電力

async def fetch_battery_level(rab: Rabboni):
    await asyncio.sleep(15)
    await rab.get_battery_level()

rab = Rabboni(mode='BLE', name='TEST_RAB')
tasks = [
    asyncio.ensure_future(rab.connect()),
    asyncio.ensure_future(fetch_battery_level(rab))
]
loop = asyncio.get_event_loop()
loop.run_until_complete(asyncio.wait(tasks))

Example

  • Rabboni 建立連線
import asyncio

from rabboni_multi_python_sdk import Rabboni

rab = Rabboni()

try:
    asyncio.run(rab.scan())
    asyncio.run(rab.connect(mac_address='D1:35:2D:30:19:35'))
except KeyboardInterrupt:
    print('Bye~~')
  • 讀取 Rabboni 電力
import asyncio

from rabboni_multi_python_sdk import Rabboni


async def fetch_battery_level(rab: Rabboni):
    await asyncio.sleep(15)
    await rab.get_battery_level()


def run():
    rab = Rabboni(mode='BLE', name='TEST_RAB')
    tasks = [
        asyncio.ensure_future(rab.connect()),
        asyncio.ensure_future(fetch_battery_level(rab))
    ]
    loop = asyncio.get_event_loop()
    loop.run_until_complete(asyncio.wait(tasks))


if __name__ == "__main__":
    try:
        run()
    except KeyboardInterrupt:
        print('Bye~~')
  • Run example
❯ python .\examples\example.py
Scan BLE Devices: [66:A5:83:23:1B:A7: Apple, Inc. (b'\x10\x06\x00\x1ej\x1a\xda\xdb'), 74:68:F8:74:EB:41: Apple, Inc. (b'\x10\x05E\x1c3\x94\xf8'), 43:E1:7A:E6:82:80: Apple, Inc. (b'\x10\x05\x0c\x1c\xdf\x92\xef'), 5F:E9:D5:5E:01:4B: Apple, Inc. (b'\x10\x06H\x1e\xac\x11\xeb\x04'), 05:6B:D7:72:07:CE: Microsoft (b'\x01\t \x02z\x021R!\x82^\x100\xcd\xa4v\x1d\xb7\x04\xe3p\xd3tI\xc5\x84N'), 79:78:A4:55:88:12: Apple, Inc. (b'\x07\x19\x01\x0f \x03\x88\x8f\x01\x00\x05\xdd?T\x80\xdeg\xe8\xacN]\x0btW\x07\x91\xcb'), E5:9F:B8:36:17:9A: RABBONI]
Discover BLE Devices: [E5:9F:B8:36:17:9A: RABBONI, 79:78:A4:55:88:12: Apple, Inc. (b'\x07\x19\x01\x0f \x03\x88\x8f\x01\x00\x05\xdd?T\x80\xdeg\xe8\xacN]\x0btW\x07\x91\xcb'), 05:6B:D7:72:07:CE: Microsoft (b'\x01\t \x02z\x021R!\x82^\x100\xcd\xa4v\x1d\xb7\x04\xe3p\xd3tI\xc5\x84N'), 66:A5:83:23:1B:A7: Apple, Inc. (b'\x10\x06\x00\x1ej\x1a\xda\xdb'), 5F:E9:D5:5E:01:4B: Apple, Inc. (b'\x10\x06H\x1e\xac\x11\xeb\x04'), 74:68:F8:74:EB:41: Apple, Inc. (b'\x10\x05E\x1c3\x94\xf8'), 43:E1:7A:E6:82:80: Apple, Inc. (b'\x10\x05\x0c\x1c\xdf\x92\xef')]
Connecting BleakClientDotNet (E5:9F:B8:36:17:9A)
Connected: True
Starting notification.
{'name': 'Rabboni', 'acc': [0.008, -0.02, 0.994], 'gyr': [-0.006, 0.011, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.009, -0.02, 0.995], 'gyr': [-0.005, 0.01, 0.006], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.013, -0.021, 0.993], 'gyr': [-0.005, 0.011, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.006, -0.023, 0.996], 'gyr': [-0.005, 0.011, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.005, -0.02, 0.991], 'gyr': [-0.004, 0.011, 0.005], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.007, -0.021, 0.991], 'gyr': [-0.003, 0.011, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.007, -0.019, 0.993], 'gyr': [-0.006, 0.013, 0.006], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.008, -0.022, 0.994], 'gyr': [-0.004, 0.012, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.008, -0.018, 0.993], 'gyr': [-0.004, 0.013, 0.006], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.009, -0.023, 0.992], 'gyr': [-0.005, 0.012, 0.007], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.007, -0.019, 0.994], 'gyr': [-0.004, 0.013, 0.005], 'trigger': False, 'count': [0, 156]}
{'name': 'Rabboni', 'acc': [0.007, -0.022, 0.994], 'gyr': [-0.005, 0.011, 0.005], 'trigger': False, 'count': [0, 156]}
Client BleakClientDotNet (E5:9F:B8:36:17:9A) got disconnected!
System.ObjectDisposedException: The object has been closed. (Exception from HRESULT: 0x80000013)
Shutting down Rabboni notification.

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

rabboni-multi-python-sdk-0.1.0.tar.gz (112.9 kB view details)

Uploaded Source

Built Distribution

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

rabboni_multi_python_sdk-0.1.0-py3-none-any.whl (111.8 kB view details)

Uploaded Python 3

File details

Details for the file rabboni-multi-python-sdk-0.1.0.tar.gz.

File metadata

  • Download URL: rabboni-multi-python-sdk-0.1.0.tar.gz
  • Upload date:
  • Size: 112.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.7.7 Windows/10

File hashes

Hashes for rabboni-multi-python-sdk-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b6ee17b1bb3f2cac2188890c625d10700c96767533d46c14a73edd2bebd86108
MD5 f3b4192837566a07a75d7be35b2cc6a7
BLAKE2b-256 0a3f4d394bfd158eea73cec88a69e5e5d3e3eae00d6a2c275fad519cbd7f4b45

See more details on using hashes here.

File details

Details for the file rabboni_multi_python_sdk-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for rabboni_multi_python_sdk-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a450034303a6245ddef321363eda591e85ae4a6578f8b4f12e9d2ad991f8107
MD5 854d5e43b7fce0ddd5b7e5383963ea2d
BLAKE2b-256 89abb80e58bd3b03999b14ba2991aa7a5e55d3a9fa453cd530cb4a50d5a60438

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