Made code pep8 compliant

pull/3/head
Alve Svarén 5 years ago
parent fec8ce6030
commit 38077b155d
  1. 2
      CONTRIBUTING.md
  2. 14
      hue_remote/hue_controller.py
  3. 10
      hue_remote/hue_remote.py
  4. 5
      hue_remote/lib/func.py
  5. 7
      speech/speech.py

@ -6,6 +6,6 @@
- Make actual quality PRs, no +1 etc.
## General format rules
- Use TABS for indentation.
- Use SPACES for indentation.
- Try to follow the layout of the code.
- Follow the file structure, don't deviate from it.

@ -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")

@ -7,11 +7,13 @@ 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, i=-1):
index = int(i)
try:
@ -60,7 +64,8 @@ def parseCommand( cmd:list, pos:int, i=-1 ):
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)
@ -104,4 +109,5 @@ def init():
parseCommandline()
hue.controller.end() # also to end it
init() # actually call the init function

@ -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 sr_microphone(object):
recognizer = sr.Recognizer()
@ -10,12 +11,14 @@ class sr_microphone(object):
if(not self.muted):
try:
with sr.Microphone() as src:
self.recognizer.adjust_for_ambient_noise( src, duration=0.2 ) # adjust for ambient noise
self.recognizer.adjust_for_ambient_noise(
src, duration=0.2) # adjust for ambient noise
audio = self.recognizer.listen(src)
# Make audio -> text
return (self.recognizer.recognize_google( audio )).lower() # use googles recognizer and lower its output
# 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))

Loading…
Cancel
Save