IFTTT integration

10 Likes

wow… endless new possibilities :heart_eyes:

Cool stuff!!

Thanks for this tutorial.
Does anyone could show me how to downlink an information from IFTTT (with a web request) to a node ?

1 Like

On IFTTT you have to search for “WEBHOOKS” instead of “MAKER”

3 Likes

I’d love to get my DHT11 data { “humidity”: 64,“temperature”: 21} sent to me via email or Twitter but The Integration IFTTT - The Things Network - seems out of date. Any guidance would be appreciated.

1 Like

can you specify which step you are having problems?

The IFTTT Applet requires (my response is in [ ]) :
Event Name [readings]
Subject [The temperature is: {{temperature}} {{humidity}} ]

The TTN IFTTT integration requires:
Event Name [readings]
Key [ key provided by IFTTT ]
Value 1 [temperature]
Value 2 [humidity]

My decoder follows:
function Decoder(bytes, port) {
var temperature = (bytes[0] << 8) | bytes [1];
var humidity = (bytes[2] << 8) | bytes [3];
return {
temperature: temperature / 100,
humidity: humidity / 100
}
}

What’s missing?

Never mind! Sorry to have wasted anyone’s time. IFTTT IS working for me now.

1 Like

Oct 2018, I saw video, but behaviour of TTN and IFTTT Maker 2.6.0 websites have changed significantly,
to point I got lost. It appears that maker now redirects to ‘https://ifttt.com/maker_webhooks’ I can see triggers and actions, but no where can I see channel setup for the ‘MAKE channel’

I found the anser I needed on:

3 Likes