Supported Doorbells by Domoticz?

Others (MiLight, Hue, Toon etc...)

Moderator: leecollings

User avatar
Domosapiens
Posts: 232
Joined: Wednesday 20 August 2014 12:08
Target OS: Windows
Domoticz version: V3.5981
Location: NL
Contact:

Re: Supported Doorbells by Domoticz?

Post by Domosapiens »

You could take a look here
viewtopic.php?f=50&t=9362#p97362
Same type of "only On" challenge,
but Blockly is triggered by a new On pulse.
Win Vista&7; 1#Aeon Z-Stick S2; 1#Aeotec Z-Sick Gen5, 6#Fib.FGBS001; 24#DS18B20; 8#Everspr.AN158-2; 3#Philio PAN04; 1#Philio PAN06, 1#YouLess El; 1#Fib.FGWPE; 1#ZME_RC2; 2#FAK_ZWS230, 2#Quib.ZMNHCDx, 1#Quib.ZMNHDD1, 7#EM6555
Melissen
Posts: 65
Joined: Wednesday 16 November 2016 9:39
Target OS: -
Domoticz version:
Contact:

Re: Supported Doorbells by Domoticz?

Post by Melissen »

Thx... but I don't understand anything off it. BlocklY is not my kind of doing things.

Is there someone who can make a LUA-script for this problem?

I have mulitple ON-pulses (everytime I push the button). So I need a dummy which goes on on the button ON-pulse, and switches back to OFF after 5 seconds (or something like that)
So I can use the dummy-switch (which does have ON and OFF state) for switching other devices.

(command like devicechanged will not work)
RFXcom433e ver1009,Raspberry Pi,Domoticz v3.5877

KaKu:16c remote,dimmer,wall-sockets,sunscreenswitch
Promax:wall sockets Elro:wall sockets Somfy:RFY screens
TFA:weather station Chinese temperature sensors, smoke detectors, power switches
RayAmsterdam
Posts: 115
Joined: Sunday 11 January 2015 16:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: RE: Re: Supported Doorbells by Domoticz?

Post by RayAmsterdam »

Melissen wrote:Thx... but I don't understand anything off it. BlocklY is not my kind of doing things.

Is there someone who can make a LUA-script for this problem?

I have mulitple ON-pulses (everytime I push the button). So I need a dummy which goes on on the button ON-pulse, and switches back to OFF after 5 seconds (or something like that)
So I can use the dummy-switch (which does have ON and OFF state) for switching other devices.

(command like devicechanged will not work)
You could put a JSON command in the virtual switch's on action, to turn itself off after some delay.
Melissen
Posts: 65
Joined: Wednesday 16 November 2016 9:39
Target OS: -
Domoticz version:
Contact:

Re: Supported Doorbells by Domoticz?

Post by Melissen »

I fixed it.... made a very simple script. Only use DeviceChanged function but not with an On/Off state selection and the end of this command.

for example:
If devicechanged['doorbell'] then
Instead of:
If devicechanged['doorbell']="On" then
RFXcom433e ver1009,Raspberry Pi,Domoticz v3.5877

KaKu:16c remote,dimmer,wall-sockets,sunscreenswitch
Promax:wall sockets Elro:wall sockets Somfy:RFY screens
TFA:weather station Chinese temperature sensors, smoke detectors, power switches
Thomasdc
Posts: 133
Joined: Wednesday 11 March 2015 19:13
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Contact:

Re: Supported Doorbells by Domoticz?

Post by Thomasdc »

thecosmicgate wrote:

I followed this guide, but the thing i want or need is just to separate the chime button from the chime .
So these 2 are two different devices . so i can use a blockly and timer when the chime doesn´t make any sound etc.
I tried everything without succes , is there anybody who can help me ?
( or is the only solution to buy a second action / selectplus doorbel ? )
did you( someone ) figure out how to do this?
User avatar
thecosmicgate
Posts: 188
Joined: Monday 06 April 2015 14:37
Target OS: Linux
Domoticz version: newest
Location: The Netherlands / Hoeven
Contact:

Re: RE: Re: Supported Doorbells by Domoticz?

Post by thecosmicgate »

Thomasdc wrote:
thecosmicgate wrote:

I followed this guide, but the thing i want or need is just to separate the chime button from the chime .
So these 2 are two different devices . so i can use a blockly and timer when the chime doesn´t make any sound etc.
I tried everything without succes , is there anybody who can help me ?
( or is the only solution to buy a second action / selectplus doorbel ? )
did you( someone ) figure out how to do this?
After a lot of failure this was working for one or 2 days , then it stops .
So nowadays I changed to a complete different solution using z-wave
It's nice to be important, but it's more important to be nice
Scooter ;)
freijn
Posts: 536
Joined: Friday 23 December 2016 16:40
Target OS: Raspberry Pi / ODroid
Domoticz version: Stable
Location: Netherlands Purmerend
Contact:

Re: Supported Doorbells by Domoticz?

Post by freijn »

Still interested too !!!!

I use the button to switch on and off my lights, but indeed would like the chime separately to notify an event in my livingroom.....

My Code :

Code: Select all

commandArray = {}
if (devicechanged['SecDeurbel'] == 'On') then
   if (otherdevices['LampFrank2'] == 'Off') then
       commandArray['LampFrank2']='On'
       commandArray['LampFrank']='On'
   else
       commandArray['LampFrank2']='Off'
       commandArray['LampFrank']='Off'
   end
   commandArray['SecDeurbel']='Off'
end
return commandArray
assenzuid
Posts: 135
Joined: Friday 13 November 2015 9:11
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: The Netherlands, Emmen Area
Contact:

Re: Supported Doorbells by Domoticz?

Post by assenzuid »

Somebody tried the Linbell (Self Powered Wireless Doorbell) doorbell already with Domoticz?
gtjgtj
Posts: 8
Joined: Sunday 02 December 2018 11:36
Target OS: NAS (Synology & others)
Domoticz version: 3.1 OMV
Contact:

Re: Supported Doorbells by Domoticz?

Post by gtjgtj »

Has anyone added this specific cheap doorbell to their setup?
It would be great if it's compatible, otherwise I'll have to invest in a new one.

Image
User avatar
mvveelen
Posts: 687
Joined: Friday 31 October 2014 10:22
Target OS: NAS (Synology & others)
Domoticz version: Beta
Location: Hoorn, The Netherlands
Contact:

Re: Supported Doorbells by Domoticz?

Post by mvveelen »

Anyone got the (additional) bell push Byron BY37 working?

It operates aso on 433.92MHz, I tried the undec and Byron SX protocol, but it isn't seen by my Domoticz. Using the latest firmware (1025) for the RFXcom.

The reason I tried it was because it's IP44. I already used a few bell push devices, but one after the other dies (oxidised mostly).....

Edit:

I've sent the data the RFXmgr received to RFXcom. The sad thing was....the battery supplied with the bell push, was empty. With a new battery, I was able to receive messages. Hopefully they can add the bell push to a new firmware for the RFXcom.

Edit II:

The Byron BY37 now works in combination with the RFXcom with the latest beta firmware I received from them. Many thanks to Bert :D .
RPi3b+/RFXCOM rfxtrx433E/Shelly/Xiaomi Gateway/Philips HUE Lights/Atag Zone One/2 SunnyBoy inverters/AirconWithMe/P1 smartmeter/Domoticz latest Beta
User avatar
PetervandePol
Posts: 23
Joined: Wednesday 09 January 2019 11:24
Target OS: Linux
Domoticz version:
Location: Scherpenzeel, GLD, NL
Contact:

Re: Supported Doorbells by Domoticz?

Post by PetervandePol »

I just bought a Honeywell/Novar DC845 doorbell. The package says it is 434MHz, so I figured adding through my RFXCOM would be simple. No such thing. Does anyone have luck/experience with this device?

Link: https://goo.gl/chr2oK
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest