Change notification when sunset lights timer is finished manually

This commit is contained in:
2023-12-07 16:40:31 -05:00
parent 1774018c4a
commit 060d6a64e8

View File

@ -105,6 +105,9 @@ if (sunsetLights === 'off') {
if (topic === 'weather') {
notifyMsg = "Lights on, delay cancelled due to weather change"
sunsetStatus = "Weather Change"
} else if (topic === 'timer-finished') {
notifyMsg = "Lights on because timer was finished manually"
sunsetStatus = "Manual Trigger"
} else if (delay === 'on') {
notifyMsg = "Lights on after delay due to clear weather"
sunsetStatus = "Delayed"