Revert "Made code pep8 compliant"

This reverts commit 38077b155d.
pull/3/head
Alve Svarén 5 years ago
parent 1d336f5767
commit e7e5ed2bb8
  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 SPACES for indentation.
- Use TABS for indentation.
- Try to follow the layout of the code.
- Follow the file structure, don't deviate from it.

@ -5,19 +5,16 @@ import time
from lib.func import * # useful functions
# Configuration for the controller (/config.py <- change this file)
import config
import config # Configuration for the controller (/config.py <- change this file)
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="" ):
@ -67,8 +64,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 )
@ -78,8 +74,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")
@ -97,8 +92,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")

@ -7,13 +7,11 @@ 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--")
@ -26,7 +24,6 @@ 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
@ -34,7 +31,6 @@ 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:
@ -64,8 +60,7 @@ 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 )
@ -109,5 +104,4 @@ def init():
parseCommandline()
hue.controller.end() # also to end it
init() # actually call the init function

@ -5,23 +5,18 @@ 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,6 +1,5 @@
import speech_recognition as sr
class sr_microphone(object):
recognizer = sr.Recognizer()
@ -11,14 +10,12 @@ 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
# use googles recognizer and lower its output
return (self.recognizer.recognize_google(audio)).lower()
return (self.recognizer.recognize_google( audio )).lower() # use googles recognizer and lower its output
except sr.RequestError as err:
print("Unable to request results: {0}".format(err))

Loading…
Cancel
Save