@Philippe_Portes I’ve been playing around with the app and I’m having issues getting any alerts from the child device to the main app.
Everything is installed (and I reinstalled just to be sure) and I see the child device polling and getting the right weather data and I see in the event log that it is indeed sending out the alterts but the app does not seem to get any “Alert” event regardless.
Also, although it isn’t part of the above issue per se, while debugging the App code and found that there were some errors in the code when it came to the high and low temperature settings that I initially thought were the cause but it seems not
In the code you have:
input "twctwcwtempalert", "number", title: "Low temperature Alert (C or F)", required: false
input "twctwcghtempalert", "number", title: "High temperature Alert (C or F)", required: false
but the value/name is incorrect so it never was getting picked up by the DTH. I corrected it and the DTH began to send these events once the threshold was triggered:
input "twclowtempalert", "number", title: "Low temperature Alert (C or F)", required: false
input "twchightempalert", "number", title: "High temperature Alert (C or F)", required: false
But, still no events at all seem to come back to the app in the logs.
Thoughts?