Search found 1 match
- Saturday 11 July 2020 18:43
- Forum: Python
- Topic: Problem switching on light
- Replies: 0
- Views: 242
Problem switching on light
Hello everyone, I am new to Domoticz and Python, (still I have good experience in Java) I am trying a Python script like this: import DomoticzEvents as DE import domoticz for name, device in domoticz.devices.items(): if device.name=='Luce Camera Gio': if device.is_off(): device.on(after=3) Where ...