-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.py
38 lines (27 loc) · 850 Bytes
/
test2.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
import snowboydecoder
import sys
import signal
interrupted = False
def signal_handler(signal, frame):
global interrupted
interrupted = True
def interrupt_callback():
global interrupted
return interrupted
def detected_callback():
print('LIGHTS ON/OFF ACTIVATE MACHINE LEARNING API')
return
#if len(sys.argv) == 1:
# print("Error: need to specify model name")
# print("Usage: python demo.py your.model")
# sys.exit(-1)
#model = sys.argv[1]
# capture SIGINT signal, e.g., Ctrl+C
signal.signal(signal.SIGINT, signal_handler)
detector = snowboydecoder.HotwordDetector('lights.pmdl', sensitivity=0.5)
print('Listening... Press Ctrl+C to exit')
# main loop
detector.start(detected_callback=detected_callback,
interrupt_check=interrupt_callback,
sleep_time=0.03)
detector.terminate()