Made code pep8 compliant again

pull/3/head
Alve 5 years ago
parent 0f8331af7f
commit 3917c5e65f
  1. 2
      hue_cmd.py
  2. 1
      modules/configloader/__init__.py
  3. 1
      modules/configloader/loader.py
  4. 11
      modules/hue/hue_controller.py
  5. 9
      modules/hue/hue_remote.py
  6. 5
      modules/hue/lib/func.py
  7. 6
      modules/speech/speech.py
  8. 5
      speech_daemon.py

@ -3,10 +3,12 @@
from modules.hue.hue_controller import controller
from modules.hue.hue_remote import parseCommandline
def init():
controller.init() # very important to initialize the controller
parseCommandline()
controller.end() # also to end it
if __name__ == "__main__":
init()

@ -1,5 +1,6 @@
import json
def readconfig(path):
try:
with open(path) as cfg:

@ -17,9 +17,11 @@ 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 = ""):
@ -69,7 +71,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)
@ -79,7 +82,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")
@ -97,7 +101,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")

@ -7,11 +7,13 @@ from modules.hue import hue_controller as hue # Actual controller
cmd = "hue"
def help():
print("--Help page--")
print("'" + cmd + "' : Display this help page")
print( "'" + cmd + " light (index)' ... : Specify light target, from 1-" + str(hue.controller.countLights()) )
print("'" + cmd + " light (index)' ... : Specify light target, from 1-" +
str(hue.controller.countLights()))
print("'" + cmd + " lights' ... : Specify all lights\n")
print("--Commands--")
@ -24,6 +26,7 @@ def help():
print("\nExamples:\n'hue light 2 on' : Turn on light 2\n'hue lights set color 255 255 255' : Set all lights colors to white")
boolConvert = {
"on": True,
"off": False
@ -31,6 +34,7 @@ boolConvert = {
# this is the most spaghetti-ish code I have ever written but it works
def parseCommand(cmd: list, pos: int, index=-1, displayHelp=True):
try:
if(cmd[pos] == "on" or cmd[pos] == "off"):
@ -59,7 +63,8 @@ def parseCommand( cmd:list, pos:int, index=-1, displayHelp=True ):
r, g, b = int(cmd[pos+2]), int(cmd[pos+3]), int(cmd[pos+4])
if(index == -1):
hue.controller.setAllLightsColor( r, g, b ) # this code is bad
hue.controller.setAllLightsColor(
r, g, b) # this code is bad
else:
hue.controller.setLightColor(index, r, g, b)

@ -5,18 +5,23 @@ boolStr = {
False: "false"
}
def boolToString(v: bool): # To fix the dumb python syntax
return boolStr[v]
def rgbToDecimal(r: int, g: int, b: int):
return round(r/255, 1), round(g/255, 1), round(b/255, 1)
def svNumFix(n: float):
return int(round(n*254, 0))
def hueNumFix(n: float):
return int(round(n*65535, 0))
def rgbToHsv(r: int, g: int, b: int):
R, G, B = rgbToDecimal(r, g, b)
H, S, V = colorsys.rgb_to_hsv(R, G, B)

@ -1,5 +1,6 @@
import speech_recognition as sr
class voiceInput(object):
recognizer = sr.Recognizer()
@ -16,7 +17,8 @@ class voiceInput(object):
with sr.Microphone(deviceIndex) as src:
self.recognizer.adjust_for_ambient_noise(src, 0.2)
print("Listening...")
audio = self.recognizer.listen( src, phrase_time_limit=5 )
audio = self.recognizer.listen(
src, phrase_time_limit=5)
print("Thinking...")
text = self.recognizer.recognize_google(audio)
yield text
@ -28,10 +30,8 @@ class voiceInput(object):
except sr.UnknownValueError:
yield self.what
def setMuted(self, setm: bool = True):
self.muted = setm
def switchMute(self):
self.setMuted(not self.muted)

@ -13,6 +13,7 @@ homedir = expanduser("~")
CONFIG = {}
class speech_daemon(object):
voiceInpObj = None
deviceIndex = None
@ -34,7 +35,8 @@ class speech_daemon(object):
global CONFIG
CONFIG = cfg
self.deviceIndex = CONFIG["speech"]["device_index"] # Apply the device index
# Apply the device index
self.deviceIndex = CONFIG["speech"]["device_index"]
def start(self):
controller.init()
@ -50,6 +52,7 @@ class speech_daemon(object):
controller.end()
if __name__ == "__main__":
daemon = speech_daemon()
daemon.loadconfig()

Loading…
Cancel
Save