wow⌠endless new possibilities
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 ?
On IFTTT you have to search for âWEBHOOKSâ instead of âMAKERâ
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.
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.
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: