-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
128 lines (114 loc) · 4.44 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
from classification import classify
from feedback import feedback
# from action import action
import speech_recognition as sr
def main():
print("===================================System active===================================")
found_classes = []
while True:
print("Listening...")
r = sr.Recognizer()
m = sr.Microphone()
with m as source:
r.adjust_for_ambient_noise(source)
with m as source:
audio = r.listen(source)
try:
value = r.recognize_google(audio)
temp = classify(value)
if len(found_classes) < 3:
found_classes += temp
else:
found_classes = temp
print found_classes
rooms = ["bedroom", "living_room"]
states = ["on", "off", "value"]
appliances = ["light", "fan", "ac"]
r = [x for x in found_classes if x in rooms]
a = [x for x in found_classes if x in appliances]
s = [x for x in found_classes if x in states]
room = r[0] if r else None
appliance = a[0] if a else None
state = s[0] if s else None
if room == rooms[0]:
if appliance == appliances[0]:
if state == states[0]:
action(0, 1)
elif state == states[1]:
action(0, 0)
else:
say = "Forgot to tell me on or off."
mode = "ask"
feedback(mode, say)
elif appliance == appliances[1]:
if state == states[0]:
action(1, 1)
elif state == states[1]:
action(1, 0)
else:
say = "turn it off or on"
mode = "ask"
feedback(mode, say)
elif appliance == appliances[2]:
if state == states[0]:
action(2, 1)
elif state == states[1]:
action(2, 0)
elif state == state[2]:
action(2, 0.96)
else:
say = "Sorry didn't hear you."
mode = "ask"
feedback(mode, say)
else:
say = "Which appliance?"
mode = "ask"
feedback(mode, say)
elif room == rooms[1]:
if appliance == appliances[0]:
if state == states[0]:
action(3, 1)
elif state == states[1]:
action(3, 0)
else:
say = "turn it off or on"
mode = "ask"
feedback(mode, say)
elif appliance == appliances[1]:
if state == states[0]:
action(4, 1)
elif state == states[1]:
action(4, 0)
else:
say = "Sorry didn't hear you."
mode = "ask"
feedback(mode, say)
elif appliance == appliances[2]:
if state == states[0]:
action(5, 1)
elif state == states[1]:
action(5, 0)
elif state == state[2]:
action(5, 0.48)
else:
say = "Did you forget to tell me on or off."
mode = "ask"
feedback(mode, say)
else:
say = "Which appliance"
mode = "ask"
feedback(mode, say)
else:
say = "What's the room you say?"
mode = "ask"
feedback(mode, say)
except sr.UnknownValueError:
say = "Oops didn't catch that!"
mode = "Error"
feedback(mode, say)
except sr.RequestError:
say = "Internet seems to be down."
mode = "Error"
feedback(mode, say)
if __name__ == "__main__":
main()