Closed mmgill closed 7 years ago
Hi @mmgill
AssistantPi is using it's own instance of Google Assistant Python SDK 0.2.1 (find the fork that's installed here), which is downoaded to /opt/AlexaPi/src/assistant-sdk-python
. If the custom actions don't require a newer version of the SDK, you can try doing your changes there.
I haven't updated to 0.3.x yet as they've
When the SDK matures, I'll put together AssistantPi 2.0 ;)
Thanks for the info. I did use the https://github.com/google/aiyprojects-raspbian repo to get GA running on the pi which has integrated custom voice commands using action.py. Might have to look for other options to handle my situation, rasp pi3.
Thanks!
I really liked what you guys have done here but had one issue that I was hoping to get more info on.
Using the standard google sdk I was able to create custom actions based on keywords (action.py) . (Ex. - "OK Google, turn on TV"; action.py would fire a subprcoess irsend command; tv would turn on)
Is it possible to implement custom actions/GPIO using Google/Alexa in this program?
class IRRemote(object): def init(self, say, command): self.say = say self.command = command