Metadata-Version: 2.1
Name: pywevolor
Version: 0.0.2
Summary: Python wrapper for interfaceing with the Wevolor API
Home-page: https://github.com/timstallmann/pywevolor
Author: Tim Stallmann
Author-email: tim@tim-maps.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/timstallmann/pywevolorissues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# PyWevolor

This package is a lightweight wrapper around the local API for the [Wevolor](https://wevolor.com/) device.

Wevolor is a WiFi to bluetooth bridge device for controlling Levolor motorized blinds via the Levolor 6-channel bluetooth remote.

## Requirements

Wevolor device with firmware 5.4 or higher, accessible on the local network.

## Usage

Instantiate a `Wevolor` object with the host IP address.

Commands are triggered with methods on the `Wevolor` object, e.g.:

```python
from pywevolor import Wevolor

wevolor = Wevolor(host='192.168.1.1')

# Send open command to channel 3 on the remote.
wevolor.open_blind(3)

# Send open command to channels 1 and 4 on the remote.
wevolor.open_blinds([1, 4])

# Send close command to channels 3 and 4 on the remote.
wevolor.close_blinds([3, 4])

# Get status info from Wevolor API
wevolor.get_status()
```




