I am trying to find the best way on sending alertemail to me when my esp32 temperature sensor reaches a temperature over a certain value.
I tried to use webhook and IFTTT website but it didnt work.
The problem is that the webhook in Arduino iot cloud will send a request every time the temperature changes in interval of 30 s.
I there is a way of making IFTTT website sends only email when the temperature is overthreshold value?
if not is there is a way to make the Arduino iot cloud send the requests to IFTTT website only when a variable value reaches over threshhold?
if not how should i do that since i dont want to continuously every 30 s look at the dashboard to see if the temperature is over threshhold.
One way to get an email when temperature exceeds a certain amount is to send the email directly from your ESP32 using this library:
Look for it in the Arduino IDE lib manager. No need to use Arduino IOT Cloud or IFTTT.
Another more complicated way to get an email or IFTTT notification when temperature exceeds a certain amount is to post the temp data to ThingSpeak. Then create a ThingSpeak "React" app with a condition (e.g., temp is over a certain value) that when met will use "ThingHTTP" to trigger an IFTTT notification or a "MATLAB Analysis" to send an email via the ThingSpeak "Alert" service.