I was successful getting a Matrix OS example to catch an IFTTT command.
Is it possible to catch an IFTTT trigger using C++ under the HAL libraries?
Thanks,
Sean
I was successful getting a Matrix OS example to catch an IFTTT command.
Is it possible to catch an IFTTT trigger using C++ under the HAL libraries?
Thanks,
Sean
You can start with this repo: https://github.com/nkolban/esp32-snippets
In the folder cpp_utils there is a IFFFT class
I am currently busy with that to see if I can create a standalone Voice publishing sound to a MQTT broker for use in Snips
This looks like good stuff for triggering IFTTT which will come in handy.
However, I am looking for code to catch an IFTTT trigger. When the matrix os is running, you can make an app with the following:
matrix.on(‘weather-change’, (condition) => {
if ( condition === ‘Rain’){
matrix.led(‘blue’).render();
}
})
Is there anything like this for c++?
Thanks,
Sean