Page 1 of 1

Doorbell default status in floorplan is “on”

Posted: Friday 01 June 2018 21:03
by APDK66
Hi,

I’m working with domoticz beta V3.9546 on a raspberry pi.
In a floorplan I have a kaku ac doorbell. The status in rest is “on” (in the settings I enabled the display values for switches”.)
When I push the doorbell icon I get an error message:”Error sending switch command. Check device/hardware !”
The log shows that the “off” command was send.
Under the tab switches the doorbell works correct.

Can I somehow correct this or is this a bug?

Re: Doorbell default status in floorplan is “on”

Posted: Saturday 02 June 2018 8:36
by mrf68
Hi,

A doorbell does not stop ringing as a response to an Off signal. When it receives an On signal it will ring once. To get it to ring again, you send another On signal. From the Switches tab you are not able to send an Off signal to a doorbell. But clicking the icon on the floorplan wants Domoticz to send an Off signal (the log is showing that) and that is not correct. In my opinion this is indeed a bug.

Re: Doorbell default status in floorplan is “on”

Posted: Sunday 03 June 2018 22:09
by APDK66
mrf68 thanks for your answer. Guess that I have to wait for a fix.

Re: Doorbell default status in floorplan is “on”

Posted: Tuesday 07 August 2018 19:27
by APDK66
Does this topic belong in another forum? Like, bugs and problems? Situation is stll the same after a few updates.

Re: Doorbell default status in floorplan is “on”

Posted: Saturday 24 November 2018 16:17
by luberth
think i have the same problem
doorbell status on floorplans always says ON
now version 4.9700

see for yourself link in signature, ring my bell when youre there;-)

lua script to set device 55 in my case doorbell to off every minute
doorbell is off now, but still error when you click it in floorplans

commandArray = {}
now=os.date("*t")
if now.min % 1 == 0 then
commandArray[#commandArray+1] = {['UpdateDevice']='55|0|0'}
end
return commandArray



or like this

lua script DoorBell_off
commandArray = {}
commandArray[#commandArray+1] = {['UpdateDevice']='55|0|0'}
return commandArray

doorbell on action
set doorbel to off after ringing 2 things in on action:
script:///home/pi/433Utils/RPi_utils/verzenden.sh 681396 10;DoorBell_off