Metadata-Version: 2.1
Name: aiokonstsmide
Version: 0.2.1
Summary: Library to communicate with Konstsmide Bluetooth powered string lights
Project-URL: Repository, https://github.com/philw07/aiokonstsmide
Project-URL: Documentation, https://philw07.github.io/aiokonstsmide/aiokonstsmide.html
Author-email: philw07 <phil.w07@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: ble,bluetooth,konstsmide,light,string light
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Hardware
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# aiokonstsmide

An asynchronous library to communicate with Konstsmide Bluetooth string lights.

- [Documentation](https://philw07.github.io/aiokonstsmide/aiokonstsmide.html)

## Supported features

- Connect with a device and send the password as pairing mechanism
- Turn the device on/off
- Control the devices function, brightness and flash speed
- Create timers on the device to turn on/off the device or specific functions at specific times and weekdays

## Installation

```console
$ pip install aiokonstsmide
```

## Usage

```python
async with aiokonstsmide.Device("11:22:33:44:55:66") as dev:
    await dev.on()
```

Also check the [examples](https://github.com/philw07/aiokonstsmide/tree/master/examples) folder.
