|
|
|
@ -17,11 +17,9 @@ PRE_URL = "" # prefix |
|
|
|
|
|
|
|
|
|
loop = asyncio.get_event_loop() # ASync loop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def genUrl(params: str): |
|
|
|
|
return PRE_URL + params |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class APIrequest: |
|
|
|
|
# Get Req |
|
|
|
|
async def get( dest: str="", payload: str="" ): |
|
|
|
@ -71,8 +69,7 @@ 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 ) |
|
|
|
|
|
|
|
|
@ -82,8 +79,7 @@ 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") |
|
|
|
|
|
|
|
|
@ -101,8 +97,7 @@ 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") |
|
|
|
|
|
|
|
|
|