Search found 11 matches
- Tuesday 06 August 2024 14:10
- Forum: Python
- Topic: Python Plugin: LG Smart AC (SmartThinQ)
- Replies: 173
- Views: 52511
Re: Python Plugin: LG Smart AC (SmartThinQ)
Could NOT log in. Probably you need to accept new agreement in the mobile app.
- Tuesday 06 August 2024 9:42
- Forum: Python
- Topic: Python Plugin: LG Smart AC (SmartThinQ)
- Replies: 173
- Views: 52511
Re: Python Plugin: LG Smart AC (SmartThinQ)
I can't get it working anymore 2024-08-06 09:39:04 ERROR [wideq.example] wideq_state file not found. Trying to load default STATE_FILE: wideq_state.json 2024-08-06 09:39:04 INFO [wideq.example] wideq_state will be loaded from: wideq_state.json 2024-08-06 09:39:04 ERROR [wideq.example] No state file ...
- Wednesday 08 May 2024 14:17
- Forum: Python
- Topic: Python Plugin: Volvo EV
- Replies: 211
- Views: 40189
Re: Python Plugin: Volvo EV
2024-05-08 14:16:07.352 xc60: INFO: retreived a XC60, **********, model year 2021 2024-05-08 14:16:07.352 xc60: ERROR: Selected vin is not an EV, not supported by this plugin 2024-05-08 14:16:07.353 xc60: INFO: Updating Devices 2024-05-08 14:16:07.668 xc60: ERROR: VolvoAPI failed calling https://api ...
- Thursday 04 November 2021 13:43
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
Thx, i only changed <30 to > 30
This works.
This works.
- Thursday 04 November 2021 9:00
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
Yes, the problem i think is that the sensor is sending information every 30 seconds to domoticz and that triggers the notification of the switch. return { on = { devices = {'Nivo'} }, execute = function(domoticz, switch) if (domoticz.devices('Nivo').distance > 30) then domoticz.devices('schakelaar ...
- Wednesday 03 November 2021 19:46
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
Hm, i have now set the interval in esp to 300 sec, now it gives me every 5 min a msg, but thats not what i want.
If the pound level is >30 then switch must on en send a msg (one time)
If the pound level is <25 then switch must off end send a msg (one time)
If the pound level is >30 then switch must on en send a msg (one time)
If the pound level is <25 then switch must off end send a msg (one time)
- Wednesday 03 November 2021 19:07
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
Well the problem stays, when sending notification direct, ik keep getting msg. until the switch is off
- Wednesday 03 November 2021 16:55
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
I know the options but dont know how to put then in. I only want 1 notification when the pound get filles and 1 when it stops.
- Wednesday 03 November 2021 14:14
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Re: Stop sending notifications
Is there no option like this. return { on = { devices = {'Nivo'} }, IF (DOMOTICZ.DEVICES('schakelaar').state = (On) and if (domoticz.devices('Nivo').distance < 30) then end return execute = function(domoticz, switch) if (domoticz.devices('Nivo').distance < 30) then domoticz.devices('schakelaar ...
- Wednesday 03 November 2021 12:45
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
- Wednesday 03 November 2021 10:48
- Forum: dzVents
- Topic: Stop sending notifications
- Replies: 24
- Views: 2666
Stop sending notifications
Hi, If have a script that checks the level in a pound, when the level is > 30 cm a switch will open. In the switch i have a notification that the switch is activated. But it keeps sending notifications every 10 seconds. How can i solve this, 1 notifaction that the switch is on en 1 that it close ...