Hi everyone,
I have one of the original Konnected alarm panels and I’m trying to modify the code to make my Zone 5 be the Beep Beep sound for the pizo speaker. I’ve tried support, but we haven’t had much luck and I think I’ve exhausted them. I have it setup and working in Home Assistant for the 2 open close sensors on zone 1 and 2. Zone 3 is empth, zone 4 is a motion sensor. I had zone 5 setup in SmartThings to beep beep when the door opened. I would like to recreate that in HA, but I’m having trouble getting the code right to do this from the Editor in HA for ESP. Can anyone give me the code that I would need to upload to make this work?
You can use the Konnected app to manage your ESPHome firmware for the v1 panels, too. We have added a Multi-output zone which allows you to define different “beep beep” buttons/switches on an output zone. Here’s a screenshot of how it looks in the app:
You can accomplish the same thing yourself by managing your ESPHome firmware YAML configuration in ESPHome dashboard, but this is more “advanced” and requires some knowledge of how ESPHome works. We don’t officially provide support for DIY ESPHome configurations, but I’m happy to help answer questions and provide tips when I can. Here’s an example of a “beep beep beep” output that I have defined on one of my alarm panels in the office:
output:
- id: out1
platform: gpio
pin:
number: "$out1"
button:
- id: door_entry_beep
name: door entry beep
platform: template
on_press:
- repeat:
count: 3
then:
- output.turn_on: out1
- delay: 60ms
- output.turn_off: out1
- delay: 60ms
Hope this helps!