Manual alarm panel throws invalid config

Hello,

I’ve been struggling with configuring my alarm_control_panel. For some reason that I can’t explain I’m getting a invalid config when using the exact same alarm_control_panel as found here.

My config:

# 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

Log tell me this:

Invalid config for [alarm_control_panel.manual]: [delay_time] is an invalid option for [alarm_control_panel.manual]. Check: alarm_control_panel.manual

It says the same thing for other parameters, for example: trigger_time & pending_time

I’m running version 0.58.0.

Any help appreciated! Thanks!

delay_time was added around December 2017 which I think was around 0.60. You need to upgrade.

Thanks. This solved the issue. I was thrown off by the documentation that stated that it was Introduced in release: 0.7.6.

Yeah, I had to view the source code to find the actual implementation… Documentation could be wrong on the HA component page.