A Python3 class to interrogate Xiaomi Mijia LYWSD* sensors.


Keywords
ble, bluetooth-low-energy, lywsd02, lywsd03mmc, pypi, python, python3, raspberry-pi
License
MIT
Install
pip install pylywsdxx==0.2.0

Documentation

pylywsdxx

PyPI version Supported Python versions PyPI downloads Code style: Black

This is a Python3 library to allow interrogation of Xiaomi Mijia LYWSD* sensors via Bluetooth (BLE).

Note: This is an unofficial project, and is in no way supported or endorsed by Xiaomi.

Requirements

This module requires bluepy3 which should be installed automagically when using the installation instructions below.

Installation

pip install pylywsdxx

Usage

Please note that versions prior to 0.1.0 are early alpha and virtually guaranteed to be defective!

import pylywsdxx as pyly

mac = "A4:C1:38:0D:EA:D0"

client2 = pyly.Lywsd02client(mac)
data2 = client2.data
print(f"Temperature: {data2.temperature}°C")

client3 = pyly.Lywsd03client(mac)
data3 = client3.data
print(f"Temperature: {data3.temperature}°C")

Please note that this module has completely and intentionally broken backwards compatibility with previous and existing versions of lywsd02 and lywsd03mmc .

Acknowledgements

Based on previous work by Mikhail Baranov (h4) : lywsd02
and Duncan Barclay (uduncanu) : lywsd03mmc

License

See LICENSE.