Page 1 of 1

How to create a door bell device ?

Posted: Sat Mar 08, 2025 9:40 pm
by redo33
I couldn't find an example for creating a door bell device.

Here is my best guess:

Code: Select all

bell = new Device("Door Bell", "esp.device.doorbell", NULL);
Param deviceParam("Pressed State", "esp.param.pressed-state", value(false), PROP_FLAG_READ|PROP_FLAG_WRITE);
Is "esp.param.pressed-state" right ?

There is no parameter name for the Door Bell device in the Parameter table.
https://rainmaker.espressif.com/docs/standard-types/

Thank you.

Re: How to create a door bell device ?

Posted: Sun Mar 09, 2025 3:19 am
by redo33
I found that "esp.param.pressed-state" was ok for RainMaker App to run, but it seemed to cause a problem with Google Home.

Adding a new device (from RainMaker) took forever.

Re: How to create a door bell device ?

Posted: Tue Mar 11, 2025 5:52 pm
by Piyush
Door bell is currently supported only for Alexa, not GVA. We will add the support for this and other missing devices soon.

Re: How to create a door bell device ?

Posted: Thu Mar 13, 2025 6:41 am
by redo33
Door bell is currently supported only for Alexa, not GVA. We will add the support for this and other missing devices soon.

Thank you very much. That's a good news.