|
|
|
@ -5,16 +5,19 @@ import time |
|
|
|
|
|
|
|
|
|
from lib.func import * # useful functions |
|
|
|
|
|
|
|
|
|
import config # Configuration for the controller (/config.py <- change this file) |
|
|
|
|
# Configuration for the controller (/config.py <- change this file) |
|
|
|
|
import config |
|
|
|
|
from presets import * # presets for the lights |
|
|
|
|
|
|
|
|
|
LIGHTS = {} # dictionary of all the lights |
|
|
|
|
|
|
|
|
|
loop = asyncio.get_event_loop() # ASync loop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def genUrl(params: str): |
|
|
|
|
return "http://" + config.address + "/api/" + config.username + params |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class APIrequest: |
|
|
|
|
# Get Req |
|
|
|
|
async def get(dest: str = "", payload: str = ""): |
|
|
|
@ -64,7 +67,8 @@ class controller: |
|
|
|
|
|
|
|
|
|
async def setLightRGB(index: int, r: int, g: int, b: int): |
|
|
|
|
h, s, v = rgbToHsv(r, g, b) |
|
|
|
|
payload = '{"sat":' + str(s) + ', "bri":' + str(v) + ', "hue":' + str(h) + '}' |
|
|
|
|
payload = '{"sat":' + str(s) + ', "bri":' + \ |
|
|
|
|
str(v) + ', "hue":' + str(h) + '}' |
|
|
|
|
|
|
|
|
|
await APIrequest.put("/lights/" + str(index) + "/state", payload) |
|
|
|
|
|
|
|
|
@ -74,7 +78,8 @@ class controller: |
|
|
|
|
if(key): |
|
|
|
|
if(key.get("state")): |
|
|
|
|
curPower = LIGHTS[str(index)]["state"]["on"] |
|
|
|
|
loop.run_until_complete( controller.toggleLight(index, not curPower)) |
|
|
|
|
loop.run_until_complete( |
|
|
|
|
controller.toggleLight(index, not curPower)) |
|
|
|
|
else: |
|
|
|
|
print("Error: Light index '" + str(index) + "' out of range") |
|
|
|
|
|
|
|
|
@ -92,7 +97,8 @@ class controller: |
|
|
|
|
def setLightBrightness(index: int, b: int): |
|
|
|
|
if(LIGHTS.get(str(index))): |
|
|
|
|
payload = '{"bri":' + str(b) + '}' |
|
|
|
|
loop.run_until_complete( APIrequest.put( "/lights/" + str(index) + "/state", payload ) ) |
|
|
|
|
loop.run_until_complete(APIrequest.put( |
|
|
|
|
"/lights/" + str(index) + "/state", payload)) |
|
|
|
|
else: |
|
|
|
|
print("Error: Light index '" + str(index) + "' out of range") |
|
|
|
|
|
|
|
|
|