Controlling Eos with IFTTT
Information Flow
- User makes command to Google Assistant
- IFTTT captures Google Assistant command and sends in a Pushbullet notification to an attached account
push2eos.sh
fetches most recent Pushbullet notification using Pushbullet API
push2eos.sh
translates command to an OSC message using translations.csv
sendosc.py
sends OSC message to Eos
Setup
IFTTT
- Connect your Pushbullet and Google accounts to your IFTTT account
- Create an applet with Google Assistant (or another assistant) as input and Pushbullet 'Push a note' as output. Set the contents of the message to
TextField
. All other options, such as the voice command used to invoke the applet, are entirely up to you.
Pushbullet
- Get your access token from
Settings > Account > Access Tokens > Create Access Token
push2eos.sh
- Paste your Pushbullet access token into the cURL command after
Access-Token:
translations.csv
- Define your commands and their OSC translations in CSV format. Commands must be in uppercase.
sendosc.py
- Set the IP address and OSC receive port of your console
Dependencies
- bash (tested working on Ubuntu on Windows Subsystem for Linux)
- cURL
- Python 3 (included in WSL Ubuntu)
- python-osc
Links