Metadata-Version: 2.1
Name: bulbeewipy
Version: 1.0.0
Summary: Python library to control Beewi SmartLight by Otio bulb in BLE
Home-page: https://github.com/bbo76/bulbeewipy
Author: bbo76
Author-email: baptiste.boquain@gmail.com
License: MIT
Keywords: beewi light ble homeassistant bluetooth otio
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE


# BulBeewiPy
[![PyPI version](https://badge.fury.io/py/bulbeewipy.svg)](https://badge.fury.io/py/bulbeewipy)
Python library to control Beewi by Otio smart lights.
You can read and write this settings :
 - Brightness
 - White tone (Cold/Hot)
 - Color (R/G/B)
 - White/Color mode
## Methods explanation
*/!\ Each passed integer values must be in the range **[0,255]***
### turnOn()
Turn on the light
### turnOff()
Turn off the light
### setWhite()
Toggle light in White mode
### setColor(r:int, g:int, b:int)
Toggle light in Color mode and set the color in RGB
### setBrightness(brightness:int)
Set the brightness of the light (works in white and color mode)
### setWhiteWarm(warm:int)
Set the tone of the light if you want a cold or hot white. /!\ Only works in white mode

## Example

    from  bulbeewipy  import BeewiSmartLigh
    from  time  import  sleep
    b = BeewiSmartLigh("D0:39:72:CC:AA:48")
    b.turnOn()
    sleep(8)
    b.turnOff()

## Thanks

 - [@IanHarvey](https://github.com/IanHarvey) for the [bluepy](https://github.com/IanHarvey/bluepy) library


