Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ docs/_build/

# PyBuilder
target/
.pyc

# Other
.*.swp
.mp3
creds.py
18 changes: 18 additions & 0 deletions active_listening_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
OS: https://wiki.ubuntu.com/ARM/RaspberryPi (Ubuntu, but any should do)


Parts used:
- Raspberry Pi 3
- Sound Card - Sabrent AU-MMSA USB 2.0 Sound Card - Stereo
- Mic - Micro Innovations Mini Microphone 3.5mm


TODO:
- Add back push button


BUGS:
- Doesn't work to well in noisy environments (getting better, but not perfect)


David Roth <[email protected]>
4 changes: 2 additions & 2 deletions initd_alexa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ case "$1" in

start)
echo "Starting Alexa..."
python /root/AlexaPi/main.py &
python /opt/alexa/main.py &

;;

stop)
echo "Stopping Alexa.."
pkill -f AlexaPi\/main\.py
pkill -f alexa\/main\.py
;;

restart|force-reload)
Expand Down
Loading