first glance is that everything works but i am experiencing weird things.
Scripts which have always worked now only partially work
some devices will trigger the script while other devices do not anymore
as triggers i have
Working
general waterflow
p1 smartmeter energy
lightswitch switch
Not working
temperature device
general text
so the temperature will change or the text will change, i see a new timestamp but it will not trigger the script anymore
when i add a testswitch to the devices the script does execute
e.g. THERMOSTAATSETPOINT is a temperature device, when i change it into the trestswitch device it works
it looks like dzvents is screwed up
i discovered this with a dummy thermostat which refuses to update with command
Code: Select all
if device.name == THERMOSTAATSETPOINT then
local SetTemperature = domoticz.devices(THERMOSTAATSETPOINT).temperature
--we update silent otherwise the script gets triggered again
domoticz.devices(THERMOSTAAT).updateSetPoint(SetTemperature)Code: Select all
if (device.name =='Flair Ventilatie Mode' and device.text == 'Stand 3') then
-- schakel naar modbus mode, Flair Ventilatie Selectie schakelt over naar huidige level(Stand 3)
domoticz.devices('Flair Control Mode').switchSelector('Modbus Step')