Help with basic alarm

hi,

I am trying to get an alarm panel to show up using the manual panel.

here the current config i have:

# Alarm                                  
                                         
                                          
alarm_control_panel:                     
  - platform: manual                        
    name: Home Alarm                     
    code: 1234                           
    pending_time: 30                     
    delay_time: 20                       
    trigger_time: 4                    
    disarmed:                        
      trigger_time: 0               
    armed_home:          
      pending_time: 0               
      delay_time: 0     

group: 
  Alarm:                                                 
    name: Alarm                                          
    entities:                                            
      - alarm_control_panel.ha_alarm                     
      - sensor.kitchen_door_sensor_alarm_level           
      - sensor.front_door_sensor_alarm_level             
                                   

#and a view:
  Alarm_View:                                              
    name: Alarm                                            
    view: yes                                              
    entities:                                              
      - alarm_control_panel.ha_alarm                       

my Alarm page is blank… any help?

sorry about that, here it is.

Thanks,

To start, please edit your post and properly format your configuration. Select it and click the </> button.

You named your alarm ‘Home Alarm’. This will create an entity name ‘alarm_control_panel.home_alarm’. And you use the entity ‘alarm_control_panel.ha_alarm’. These do not match. You should change one of them.

You can always check your entities in the developer tools:

http://ip-address:8123/dev-state

1 Like

Thanks, that was it. I was trying to understand where the - alarm_control_panel.ha_alarm
entity came from…

You can improve my karma by liking my answer, and marking it as “solved” by checking the box. :wink:

done thanks for your help.

1 Like