parent
fec8ce6030
commit
38077b155d
@ -1,152 +1,158 @@ |
||||
import requests as req # Used for HTTP requests for the Hue API |
||||
import json # API uses JSON |
||||
import asyncio # ASync stuff |
||||
import requests as req # Used for HTTP requests for the Hue API |
||||
import json # API uses JSON |
||||
import asyncio # ASync stuff |
||||
import time |
||||
|
||||
from lib.func import * # useful functions |
||||
from lib.func import * # useful functions |
||||
|
||||
import config # Configuration for the controller (/config.py <- change this file) |
||||
from presets import * # presets for the lights |
||||
# Configuration for the controller (/config.py <- change this file) |
||||
import config |
||||
from presets import * # presets for the lights |
||||
|
||||
LIGHTS = {} # dictionary of all the lights |
||||
LIGHTS = {} # dictionary of all the lights |
||||
|
||||
loop = asyncio.get_event_loop() # ASync loop |
||||
|
||||
loop = asyncio.get_event_loop() # ASync loop |
||||
|
||||
def genUrl(params: str): |
||||
return "http://" + config.address + "/api/" + config.username + params |
||||
return "http://" + config.address + "/api/" + config.username + params |
||||
|
||||
|
||||
class APIrequest: |
||||
# Get Req |
||||
async def get( dest: str="", payload: str="" ): |
||||
try: |
||||
apiReq = req.get( genUrl(dest), data = payload ) |
||||
# Get Req |
||||
async def get(dest: str = "", payload: str = ""): |
||||
try: |
||||
apiReq = req.get(genUrl(dest), data=payload) |
||||
|
||||
if( apiReq.status_code != 200 ): # print out the error if the status code is not 200 |
||||
print(apiReq) |
||||
print(apiReq.text) |
||||
if(apiReq.status_code != 200): # print out the error if the status code is not 200 |
||||
print(apiReq) |
||||
print(apiReq.text) |
||||
|
||||
return apiReq |
||||
return apiReq |
||||
|
||||
except req.exceptions.RequestException as err: |
||||
print(err) |
||||
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 |
||||
# PUT Req |
||||
async def put(dest: str = "", payload: str = ""): |
||||
try: |
||||
apiReq = req.put(genUrl(dest), data=payload) # send the payload |
||||
|
||||
if( apiReq.status_code != 200 ): |
||||
print(apiReq) |
||||
print(apiReq.text) |
||||
if(apiReq.status_code != 200): |
||||
print(apiReq) |
||||
print(apiReq.text) |
||||
|
||||
return apiReq |
||||
return apiReq |
||||
|
||||
except req.exceptions.RequestException as err: |
||||
print(err) |
||||
except req.exceptions.RequestException as err: |
||||
print(err) |
||||
|
||||
|
||||
class controller: |
||||
|
||||
# Internal get functions |
||||
async def getLights(): |
||||
return await APIrequest.get("/lights") |
||||
|
||||
async def getLight(index: int=1): |
||||
return await APIrequest.get( "/lights/" + str(index) ) |
||||
|
||||
# Lower level light manipulation (async) |
||||
async def toggleLight(index: int=1, isOn: bool=True): |
||||
await APIrequest.put( "/lights/" + str(index) + "/state", '{"on":' + boolToString(isOn) + '}' ) |
||||
|
||||
async def toggleLights(isOn: bool=True): |
||||
for key in LIGHTS: |
||||
await controller.toggleLight(key, isOn) |
||||
|
||||
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) + '}' |
||||
|
||||
await APIrequest.put( "/lights/" + str(index) + "/state", payload ) |
||||
|
||||
# Normal functions |
||||
def switchLight( index: int=1 ): |
||||
key = LIGHTS.get(str(index)) |
||||
if(key): |
||||
if( key.get("state") ): |
||||
curPower = LIGHTS[str(index)]["state"]["on"] |
||||
loop.run_until_complete( controller.toggleLight(index, not curPower)) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def switchLights(): |
||||
for key in LIGHTS: |
||||
controller.switchLight(key) |
||||
|
||||
# Light control |
||||
def setLightColor( index:int, r:int, g:int, b:int ): |
||||
if( LIGHTS.get(str(index)) ): |
||||
loop.run_until_complete( controller.setLightRGB(index, r, g, b) ) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
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 ) ) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def setBrightness( b:int ): |
||||
for key in LIGHTS: |
||||
controller.setLightBrightness( key, b ) |
||||
|
||||
def setAllLightsColor( r:int, g:int, b:int ): |
||||
for key in LIGHTS: |
||||
controller.setLightColor( key, r, g, b ) |
||||
|
||||
def Power(isOn:bool=True): # Controlling the power of the lights |
||||
loop.run_until_complete( controller.toggleLights(isOn) ) |
||||
|
||||
def powerLight( index:int, isOn:bool=True ): |
||||
loop.run_until_complete( controller.toggleLight( index, isOn ) ) |
||||
|
||||
# Presets |
||||
def setLightPreset( index:int, p:str ): |
||||
if( LIGHTS.get(str(index)) ): |
||||
if( PRESETS.get(p) ): |
||||
preset = PRESETS[p] |
||||
r, g, b = preset["color"] |
||||
brightness = preset["brightness"] |
||||
|
||||
controller.setLightColor( index, r, g, b ) |
||||
controller.setLightBrightness( index, brightness ) |
||||
else: |
||||
print("Error: Unknown preset '" + p + "'") |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def setPreset( presetID:str, index:int=-1 ): |
||||
if( PRESETS.get(presetID) ): |
||||
if( index == -1 ): |
||||
for key in LIGHTS: |
||||
controller.setLightPreset( key, presetID ) |
||||
else: |
||||
controller.setLightPreset( index, presetID ) |
||||
else: |
||||
print("Error: Unknown preset '" + presetID + "'") |
||||
|
||||
def countLights(): |
||||
return len(LIGHTS) |
||||
|
||||
# Controller "system" functions |
||||
def delay(n:int): |
||||
time.sleep(n) |
||||
|
||||
def init(): |
||||
jsonLights = loop.run_until_complete(APIrequest.get("/lights")) |
||||
|
||||
global LIGHTS |
||||
LIGHTS = json.loads(jsonLights.text) |
||||
|
||||
def end(): |
||||
loop.close() |
||||
# Internal get functions |
||||
async def getLights(): |
||||
return await APIrequest.get("/lights") |
||||
|
||||
async def getLight(index: int = 1): |
||||
return await APIrequest.get("/lights/" + str(index)) |
||||
|
||||
# Lower level light manipulation (async) |
||||
async def toggleLight(index: int = 1, isOn: bool = True): |
||||
await APIrequest.put("/lights/" + str(index) + "/state", '{"on":' + boolToString(isOn) + '}') |
||||
|
||||
async def toggleLights(isOn: bool = True): |
||||
for key in LIGHTS: |
||||
await controller.toggleLight(key, isOn) |
||||
|
||||
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) + '}' |
||||
|
||||
await APIrequest.put("/lights/" + str(index) + "/state", payload) |
||||
|
||||
# Normal functions |
||||
def switchLight(index: int = 1): |
||||
key = LIGHTS.get(str(index)) |
||||
if(key): |
||||
if(key.get("state")): |
||||
curPower = LIGHTS[str(index)]["state"]["on"] |
||||
loop.run_until_complete( |
||||
controller.toggleLight(index, not curPower)) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def switchLights(): |
||||
for key in LIGHTS: |
||||
controller.switchLight(key) |
||||
|
||||
# Light control |
||||
def setLightColor(index: int, r: int, g: int, b: int): |
||||
if(LIGHTS.get(str(index))): |
||||
loop.run_until_complete(controller.setLightRGB(index, r, g, b)) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
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)) |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def setBrightness(b: int): |
||||
for key in LIGHTS: |
||||
controller.setLightBrightness(key, b) |
||||
|
||||
def setAllLightsColor(r: int, g: int, b: int): |
||||
for key in LIGHTS: |
||||
controller.setLightColor(key, r, g, b) |
||||
|
||||
def Power(isOn: bool = True): # Controlling the power of the lights |
||||
loop.run_until_complete(controller.toggleLights(isOn)) |
||||
|
||||
def powerLight(index: int, isOn: bool = True): |
||||
loop.run_until_complete(controller.toggleLight(index, isOn)) |
||||
|
||||
# Presets |
||||
def setLightPreset(index: int, p: str): |
||||
if(LIGHTS.get(str(index))): |
||||
if(PRESETS.get(p)): |
||||
preset = PRESETS[p] |
||||
r, g, b = preset["color"] |
||||
brightness = preset["brightness"] |
||||
|
||||
controller.setLightColor(index, r, g, b) |
||||
controller.setLightBrightness(index, brightness) |
||||
else: |
||||
print("Error: Unknown preset '" + p + "'") |
||||
else: |
||||
print("Error: Light index '" + str(index) + "' out of range") |
||||
|
||||
def setPreset(presetID: str, index: int = -1): |
||||
if(PRESETS.get(presetID)): |
||||
if(index == -1): |
||||
for key in LIGHTS: |
||||
controller.setLightPreset(key, presetID) |
||||
else: |
||||
controller.setLightPreset(index, presetID) |
||||
else: |
||||
print("Error: Unknown preset '" + presetID + "'") |
||||
|
||||
def countLights(): |
||||
return len(LIGHTS) |
||||
|
||||
# Controller "system" functions |
||||
def delay(n: int): |
||||
time.sleep(n) |
||||
|
||||
def init(): |
||||
jsonLights = loop.run_until_complete(APIrequest.get("/lights")) |
||||
|
||||
global LIGHTS |
||||
LIGHTS = json.loads(jsonLights.text) |
||||
|
||||
def end(): |
||||
loop.close() |
||||
|
@ -1,36 +1,39 @@ |
||||
import speech_recognition as sr |
||||
|
||||
|
||||
class sr_microphone(object): |
||||
recognizer = sr.Recognizer() |
||||
recognizer = sr.Recognizer() |
||||
|
||||
muted = True |
||||
muted = True |
||||
|
||||
def getInput(self): # use the object as a generator |
||||
print("Awaiting input") |
||||
if( not self.muted ): |
||||
try: |
||||
with sr.Microphone() as src: |
||||
self.recognizer.adjust_for_ambient_noise( src, duration=0.2 ) # adjust for ambient noise |
||||
def getInput(self): # use the object as a generator |
||||
print("Awaiting input") |
||||
if(not self.muted): |
||||
try: |
||||
with sr.Microphone() as src: |
||||
self.recognizer.adjust_for_ambient_noise( |
||||
src, duration=0.2) # adjust for ambient noise |
||||
|
||||
audio = self.recognizer.listen(src) |
||||
audio = self.recognizer.listen(src) |
||||
|
||||
# Make audio -> text |
||||
return (self.recognizer.recognize_google( audio )).lower() # use googles recognizer and lower its output |
||||
# Make audio -> text |
||||
# use googles recognizer and lower its output |
||||
return (self.recognizer.recognize_google(audio)).lower() |
||||
|
||||
except sr.RequestError as err: |
||||
print("Unable to request results: {0}".format(err)) |
||||
except sr.RequestError as err: |
||||
print("Unable to request results: {0}".format(err)) |
||||
|
||||
except sr.UnknownValueError as err: |
||||
print("Unknown Error: {0}".format(err)) |
||||
except sr.UnknownValueError as err: |
||||
print("Unknown Error: {0}".format(err)) |
||||
|
||||
def setMuted( self, setm: bool=True ): |
||||
self.muted = setm |
||||
def setMuted(self, setm: bool = True): |
||||
self.muted = setm |
||||
|
||||
def switchMute( self ): |
||||
self.setMuted( not self.muted ) |
||||
def switchMute(self): |
||||
self.setMuted(not self.muted) |
||||
|
||||
|
||||
# Small test |
||||
voice = sr_microphone() |
||||
voice.setMuted(False) |
||||
print( voice.getInput() ) |
||||
print(voice.getInput()) |
||||
|
Loading…
Reference in new issue