Hello, I changed line 171 i domoticz.js from setTimeout(function() { to setInterval(function() { . It works for me. I have used this module for many years…```
Thisi my config:
{
disabled: false,
module: 'Nilnik/domoticz', //folder
header: 'Domoticz Home Automation',
position: 'bottom_right',
config: {
apiBase: "http://xxx.xxx.x.xxx", //Domoticz IP
apiPort: "xxxx", //Port
updateInterval: 6000,
sensors: [
{
idx: "17", //Device IDX
symbolon: "fa fa-unlock", //font-awesome icon if device is On
symboloff: "fa fa-lock", //font-awesome icon if device is Off (this will also be used if it is a temperature-de
},
{
idx: "3",
symbolon: "fa fa-unlock",
symboloff: "fa fa-lock",
},
{
idx: "16",
symbolon: "fa fa-unlock",
symboloff: "fa fa-lock",
},
{
idx: "1",
},
{
idx: "2",
symboloff: "fa fa-thermometer-half",
},
{
idx: "10",
symboloff:"fa fa-thermometer-half",
},
{
idx: "11",
//symbolon: "fa fa-thermometer-half",
symboloff: "fa fa-thermometer-half",
},
{
idx: "30",
//symbolon: "fa fa-thermometer-half",
symboloff: "fa fa-thermometer-half",
},
{
idx: "12",
symboloff: "fa fa-thermometer-half",
},
{ idx: "13",
symboloff: "fa fa-thermometer-half",
},
{ idx: "7",
symboloff: "fa fa-thermometer-half",
},
{
idx: "23",
symboloff: "fa fa-user-lock",
},
],
}
},
`