commit
ef7d48d29e
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"hue": { |
||||||
|
"address": "", |
||||||
|
"username": "" |
||||||
|
}, |
||||||
|
"speech": { |
||||||
|
"device_index": 30, |
||||||
|
"prefixes": ["computer", "computers"] |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,41 @@ |
|||||||
|
{ |
||||||
|
"default": { |
||||||
|
"color": [178, 199, 255], |
||||||
|
"brightness": 255 |
||||||
|
}, |
||||||
|
|
||||||
|
"dim": { |
||||||
|
"color": [178, 199, 255], |
||||||
|
"brightness": 111 |
||||||
|
}, |
||||||
|
|
||||||
|
"dim": { |
||||||
|
"color": [178, 199, 255], |
||||||
|
"brightness": 80 |
||||||
|
}, |
||||||
|
|
||||||
|
"red": { |
||||||
|
"color": [255, 0, 0], |
||||||
|
"brightness": 255 |
||||||
|
}, |
||||||
|
|
||||||
|
"green": { |
||||||
|
"color": [0, 255, 0], |
||||||
|
"brightness": 255 |
||||||
|
}, |
||||||
|
|
||||||
|
"blue": { |
||||||
|
"color": [0, 0, 255], |
||||||
|
"brightness": 255 |
||||||
|
}, |
||||||
|
|
||||||
|
"ice" : { |
||||||
|
"color": [80, 100, 255], |
||||||
|
"brightness": 120 |
||||||
|
}, |
||||||
|
|
||||||
|
"sleep": { |
||||||
|
"color": [185, 155, 25], |
||||||
|
"brightness": 60 |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
#!/usr/bin/env python |
||||||
|
|
||||||
|
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,6 +0,0 @@ |
|||||||
################################## |
|
||||||
# RENAME THIS FILE TO "config.py"# |
|
||||||
################################## |
|
||||||
|
|
||||||
address = "" |
|
||||||
username = "" |
|
@ -1,42 +0,0 @@ |
|||||||
# Presets goes in here |
|
||||||
PRESETS = { |
|
||||||
"default": { |
|
||||||
"color": (178, 199, 255), |
|
||||||
"brightness": 255 |
|
||||||
}, |
|
||||||
|
|
||||||
"dim": { |
|
||||||
"color": (178, 199, 255), |
|
||||||
"brightness": 111 |
|
||||||
}, |
|
||||||
|
|
||||||
"dim": { |
|
||||||
"color": (178, 199, 255), |
|
||||||
"brightness": 80 |
|
||||||
}, |
|
||||||
|
|
||||||
"red": { |
|
||||||
"color": (255, 0, 0), |
|
||||||
"brightness": 255 |
|
||||||
}, |
|
||||||
|
|
||||||
"green": { |
|
||||||
"color": (0, 255, 0), |
|
||||||
"brightness": 255 |
|
||||||
}, |
|
||||||
|
|
||||||
"blue": { |
|
||||||
"color": (0, 0, 255), |
|
||||||
"brightness": 255 |
|
||||||
}, |
|
||||||
|
|
||||||
"ice" : { |
|
||||||
"color": ( 80, 100, 255 ), |
|
||||||
"brightness": 120 |
|
||||||
}, |
|
||||||
|
|
||||||
"sleep": { |
|
||||||
"color": (185, 155, 25), |
|
||||||
"brightness": 60 |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1 @@ |
|||||||
|
|
@ -0,0 +1,12 @@ |
|||||||
|
import json |
||||||
|
|
||||||
|
def readconfig(path): |
||||||
|
try: |
||||||
|
with open(path) as cfg: |
||||||
|
data = json.load(cfg) |
||||||
|
|
||||||
|
return data |
||||||
|
|
||||||
|
except: |
||||||
|
print("[Error] Something went wrong reading the configuration file.") |
||||||
|
print("--", path) |
@ -0,0 +1,37 @@ |
|||||||
|
import speech_recognition as sr |
||||||
|
|
||||||
|
class voiceInput(object): |
||||||
|
recognizer = sr.Recognizer() |
||||||
|
|
||||||
|
muted = True |
||||||
|
|
||||||
|
# "Error codes", can be used to check stuff |
||||||
|
what = "??" |
||||||
|
error = "ERROR" |
||||||
|
|
||||||
|
def start( self, deviceIndex=30 ): # a generator for everything that is said |
||||||
|
while( True ): # loop |
||||||
|
try: |
||||||
|
if( not self.muted ): # this thing is not the NSA |
||||||
|
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 ) |
||||||
|
print("Thinking...") |
||||||
|
text = self.recognizer.recognize_google(audio) |
||||||
|
yield text |
||||||
|
|
||||||
|
except sr.RequestError as err: |
||||||
|
print("Unable to request results: {0}".format(err)) |
||||||
|
yield self.error |
||||||
|
|
||||||
|
except sr.UnknownValueError: |
||||||
|
yield self.what |
||||||
|
|
||||||
|
|
||||||
|
def setMuted( self, setm: bool=True ): |
||||||
|
self.muted = setm |
||||||
|
|
||||||
|
def switchMute( self ): |
||||||
|
self.setMuted( not self.muted ) |
||||||
|
|
@ -0,0 +1 @@ |
|||||||
|
SpeechRecognition>=3.8.1 |
@ -0,0 +1,7 @@ |
|||||||
|
#!/usr/bin/bash |
||||||
|
|
||||||
|
cfgPath="$HOME/.config/roomcomputer" |
||||||
|
|
||||||
|
mkdir $cfgPath |
||||||
|
cp default-config.json $cfgPath/config.json |
||||||
|
cp default-presets.json $cfgPath/presets.json |
@ -1,36 +0,0 @@ |
|||||||
import speech_recognition as sr |
|
||||||
|
|
||||||
class sr_microphone(object): |
|
||||||
recognizer = sr.Recognizer() |
|
||||||
|
|
||||||
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 |
|
||||||
|
|
||||||
audio = self.recognizer.listen(src) |
|
||||||
|
|
||||||
# Make audio -> text |
|
||||||
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)) |
|
||||||
|
|
||||||
except sr.UnknownValueError as err: |
|
||||||
print("Unknown Error: {0}".format(err)) |
|
||||||
|
|
||||||
def setMuted( self, setm: bool=True ): |
|
||||||
self.muted = setm |
|
||||||
|
|
||||||
def switchMute( self ): |
|
||||||
self.setMuted( not self.muted ) |
|
||||||
|
|
||||||
|
|
||||||
# Small test |
|
||||||
voice = sr_microphone() |
|
||||||
voice.setMuted(False) |
|
||||||
print( voice.getInput() ) |
|
@ -0,0 +1,53 @@ |
|||||||
|
#!/usr/bin/env python |
||||||
|
|
||||||
|
import sys |
||||||
|
|
||||||
|
from modules.hue.hue_remote import parseCommandline |
||||||
|
from modules.hue.hue_controller import controller |
||||||
|
from modules.speech.speech import voiceInput |
||||||
|
|
||||||
|
from modules.configloader.loader import readconfig |
||||||
|
|
||||||
|
from os.path import expanduser |
||||||
|
homedir = expanduser("~") |
||||||
|
|
||||||
|
CONFIG = {} |
||||||
|
|
||||||
|
class speech_daemon(object): |
||||||
|
voiceInpObj = None |
||||||
|
deviceIndex = 30 |
||||||
|
|
||||||
|
def __init__(self, deviceIndex=30): |
||||||
|
self.voiceInpObj = voiceInput() |
||||||
|
self.voiceInpObj.setMuted(False) |
||||||
|
|
||||||
|
self.deviceIndex = deviceIndex |
||||||
|
|
||||||
|
def loadconfig(self): |
||||||
|
path = homedir + "/.config/roomcomputer/config.json" |
||||||
|
# if no config path is |
||||||
|
# specified then choose the users default |
||||||
|
|
||||||
|
if( len(sys.argv) > 1 ): |
||||||
|
path = sys.argv[1] |
||||||
|
|
||||||
|
cfg = readconfig(path) # read the config |
||||||
|
|
||||||
|
global CONFIG |
||||||
|
CONFIG = cfg |
||||||
|
|
||||||
|
def start(self): |
||||||
|
controller.init() |
||||||
|
|
||||||
|
for inp in self.voiceInpObj.start( self.deviceIndex ): |
||||||
|
cmdBuf = inp.lower().split(" ") |
||||||
|
if( cmdBuf[0] in CONFIG["speech"]["prefixes"] ): |
||||||
|
print("CMD:", cmdBuf) |
||||||
|
parseCommandline( cmdBuf, False ) |
||||||
|
|
||||||
|
controller.end() |
||||||
|
|
||||||
|
if __name__ == "__main__": |
||||||
|
daemon = speech_daemon() |
||||||
|
daemon.loadconfig() |
||||||
|
daemon.start() |
Loading…
Reference in new issue