Hi all,
If you are interested in using Google Voice to open you garage, then read on.
Some time ago I did a Google voice integration in order to open my own Particle based garage opener.
I believe this integration can be done with your Garadget as well, since it’s using the same platform. Here’s a link to the article describing how you could do the same.
Both device ID and access token can be obtained from web interface.
Device ID is shown in the settings
Access token can be copied from the requests using the document inspector: right click anywhere in the page and select “Inspect” from the context menu. Go to the “Network” tab in the window that opens. Observe periodic requests submitted by the page with access_token parameter in them.
In General section you see that this is “POST” type http request. Form data is what is passed to the script. It’s the equivalent of submitting the web form like this:
To get the state of the door you need to read variabledoorStatus and check if it contains text closed in what you get in response. All variables are documented in the Garadget’s GitHub repository.