No project description provided
Project description
Python Swithbot Meter API
Comprehensible SwitchBot Meter API. Read your SwitchBot Meter status in real time via BLE.
Installation
This library is available on Pypi, you can install it directly with pip
pip install switchbotmeter
This library acts as a BLE client, so you need a BLE-capable device (a bluetooth dongle or integrated)
Usage
This library exports a DeviceScanner object that will dected any SwitchBot Meter devices nearby. Note that you need to have permissions to access your bluetooth device, the scope of wich will not be covered by this readme :
from switchbotmeter import DevScanner
for current_devices in DevScanner():
for device in current_devices:
print(device)
print(f'{device.mac} -> {device.temp}')
<T temp: 19.8 humidity: 73> (c6:97:89:d6:c8:09)
c6:97:89:d6:c8:09 -> 19.8
...
<T temp: 20.4 humidity: 71> (c6:97:89:d6:c8:09)
c6:97:89:d6:c8:09 -> 20.4
If your device is shown but not returned by DevScanner, it wasn’t identified as a SwitchBot meter. In this case, pass the MAC address to DevScanner, e.g.:
DevScanner(macs=['c6:97:89:d6:c8:09'])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file switchbotmeter-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: switchbotmeter-1.1.0-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36028c34b305ee8d88e5e226b0c01346613152f7cda20a37b32dca93f42b3242 |
|
MD5 | 272c07aea20b1a1454da04ea09fd64cb |
|
BLAKE2b-256 | bc480d3e9695bdf8d2d85fb3861e48f9c3f25117111ec599df0dbc0e8db2b09b |