Metadata-Version: 2.1
Name: decora_bleak
Version: 0.0.1
Summary: A package for interacting with Decora switches and dimmers over BLE
Author-email: Colin Campbell <colin.campbell@gmail.com>
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# decora_bleak

Python module for interacting with Leviton bluetooth switches and dimmers via BLE (Bluetooth Low Energy). There is prior art in this space, namely https://github.com/mjg59/python-decora and https://github.com/lucapinello/pydecora_ble, both of which primarily use the bluepy module. This project aims to provide the same support using Bleak which is used for interacting with BLE devices in Home Assistant.

## Using

```
python3 example.py
```

```
python3 example.py --address "C84441EE-5C57-2681-1BD5-82AF18C58F5D"
```

```
python3 example.py --address "C84441EE-5C57-2681-1BD5-82AF18C58F5D" --api-key "8c4c89fa00"
```

## Releasing

One of

```
bumpver update --commit --tag-commit --push --major
bumpver update --commit --tag-commit --push --minor
bumpver update --commit --tag-commit --push --patch
```
