CLI tool to control your IoT gadgets.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roomcomputer/hue_controller.py

89 lines
2.5 KiB

import requests as req # Used for HTTP requests for the Hue API
import json # API uses JSON
4 years ago
import asyncio # ASync stuff
4 years ago
import config # Configuration for the controller (/config.py <- change this file)
LIGHTS = {} # dictionary of all the lights
4 years ago
loop = asyncio.get_event_loop() # ASync loop
def genUrl(params: str):
4 years ago
return "http://" + config.address + "/api/" + config.username + params
boolStr = {
True: "true",
False: "false"
}
StrBool = { # because doing something else is too expensive
"true": True,
"false": False
}
4 years ago
def boolToString(v: bool): # To fix the dumb python syntax
return boolStr[v]
4 years ago
class APIrequest:
# Get Req
async def get( dest: str="", payload: str="" ):
try:
apiReq = req.get( genUrl(dest), data = payload )
return apiReq
4 years ago
except req.exceptions.RequestException as err:
print(err)
# POST Req
async def post( dest: str="", payload: str="" ):
try:
apiReq = req.post( genUrl(params), data = payload )
return apiReq
4 years ago
except req.exceptions.RequestException as err:
print(err)
# PUT Req
async def put( dest: str="", payload: str="" ):
try:
apiReq = req.put( genUrl(dest), data = payload ) # send the payload
print(apiReq)
print(apiReq.text)
return apiReq
except req.exceptions.RequestException as err:
print(err)
class controller:
async def getLights():
return await APIrequest.get("/lights")
async def getLight(index: int=1):
return await APIrequest.get( "/lights/" + str(index) )
async def toggleLight(index: int=1, isOn: bool=True):
await APIrequest.put( "/lights/" + str(index) + "/state", '{"on":' + boolToString(isOn) + '}' )
def switchLight( index: int=1 ):
key = LIGHTS.get(str(index))
if(key):
if( key.get(state) ):
loop.run_until_complete( controller.toggleLight( index, boolToString(StrBool[LIGHTS[str(index)]["state"]["on"]]) ) )
else:
print("Error: Light index out of range")
def init():
jsonLights = loop.run_until_complete(APIrequest.get("/lights"))
global LIGHTS
LIGHTS = json.loads(jsonLights.text)
print(LIGHTS)
4 years ago
def testReq():
controller.init()
controller.switchLight( 1 )
# loop.run_until_complete( controller.toggleLight(1, True) ) # try to turn on/off a light
4 years ago
loop.close()