Need some help figuring out how to get IFTT to turn on a Vesync wifi switch every hour when the temp is below 20 degrees. Basic recipe works but I have a schedule running on the Vesync software that may have the switch off at times but I want to use IFTTT to essentially override this when its below 20 degrees outside. Have tried using a QUERY with the Temp Hist but it doesn’t return current point in time temp so isn’t reliable.
I’m no expert, but try something like this as a filter with the “New Observation”, and you’ll need the change the action from IfNotifications.sendNotification.skip() to whatever the skip action for your THEN action.
if ( Number(Weatherflow.newObservation.AirTemp) >= 20 ) {
IfNotifications.sendNotification.skip()
}
The way this works is that it says that if the Air Temperature is 20 or higher, skip the action. The default is to execute the action. If you tell me what your THEN action is I can look up the exact syntax for the .skip() action, although you’ll see it listed below the filter code box, like this: