Hi @Sam,
I haven’t been able to find a service that would pass a temperature value from IFTTT either, I suspect there isn’t one. But you can use the actions with thresholds for temperature from EcoBee in a crafty way to trigger your logic
We received this question from another user, and this might give you some ideas, they were trying to track the UV index and to turn on a light bulb when it was less than a specific threshold.
I cannot give you an exact example without knowing a bit more about your logic, but you can build like a sliding scale of temperatures using two variables to determine in which side of the scale you are, for example between 0 and 18º degrees Celsius, or between 18 and 32:
0 ++++++++++ 18 ------------------ 32
- One variable, “base_level” is set to true when the temperature is over 1.
- A second variable, “threshold_level” is set to true when the temperature is over 18.
- Both variables are reset to false everyday at a convenient time, or depending on your automation
- If base_level is true, but threshold_level is false, then you are in the range between 1 and 18 (in the ++++++ area)
- If both are true then you are in the range between 18 and 32 (in the ------- area)
You could add more variables following the same idea to track ranges when temperatures are below 0, or have smaller ones.
Let us know more about how you are trying to use Apilio, and if this idea works for you, thanks!