Running wifi panel with homeassistant and alarmo

Recently started getting random false alarms etc and siren not going off after updating esphome addon in HA

do i need to update to the latest firmware please (currently at 2024.9.0) using the tool over microusb after going to https://install.konnected.io/ ?

i am getting the following odd errors when i try to update within esphome in HA by clicking on the update tab…

INFO ESPHome 2025.2.2
INFO Reading configuration /config/esphome/konnected-87061b.yaml...
WARNING Found '$zone5' (see substitutions->warning_beep_pin) which looks like a substitution, but 'zone5' was not declared
WARNING Found '$project_name' (see esphome->project->name) which looks like a substitution, but 'project_name' was not declared
WARNING Found '$project_version' (see esphome->project->version) which looks like a substitution, but 'project_version' was not declared
WARNING Found '$zone1' (see binary_sensor->0->pin->number) which looks like a substitution, but 'zone1' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->0->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone2' (see binary_sensor->1->pin->number) which looks like a substitution, but 'zone2' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->1->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone3' (see binary_sensor->2->pin->number) which looks like a substitution, but 'zone3' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->2->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone4' (see binary_sensor->3->pin->number) which looks like a substitution, but 'zone4' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->3->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone6' (see binary_sensor->4->pin->number) which looks like a substitution, but 'zone6' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->4->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$alarm' (see switch->0->pin->number) which looks like a substitution, but 'alarm' was not declared
WARNING Found '$zone5' (see switch->1->pin) which looks like a substitution, but 'zone5' was not declared
WARNING Found '$blink_on_state' (see globals->0->initial_value) which looks like a substitution, but 'blink_on_state' was not declared
WARNING Found '$status_led' (see light->0->pin->number) which looks like a substitution, but 'status_led' was not declared
WARNING Found '${warning_beep_pulse_time}' (see light->1->effects->0->strobe->colors->0->duration) which looks like a substitution, but 'warning_beep_pulse_time' was not declared
WARNING Found '${warning_beep_pause_time}' (see light->1->effects->0->strobe->colors->1->duration) which looks like a substitution, but 'warning_beep_pause_time' was not declared
WARNING Found '$zone5' (see substitutions->warning_beep_pin) which looks like a substitution, but 'zone5' was not declared
WARNING Found '$project_name' (see esphome->project->name) which looks like a substitution, but 'project_name' was not declared
WARNING Found '$project_version' (see esphome->project->version) which looks like a substitution, but 'project_version' was not declared
WARNING Found '$zone1' (see binary_sensor->0->pin->number) which looks like a substitution, but 'zone1' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->0->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone2' (see binary_sensor->1->pin->number) which looks like a substitution, but 'zone2' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->1->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone3' (see binary_sensor->2->pin->number) which looks like a substitution, but 'zone3' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->2->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone4' (see binary_sensor->3->pin->number) which looks like a substitution, but 'zone4' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->3->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$zone6' (see binary_sensor->4->pin->number) which looks like a substitution, but 'zone6' was not declared
WARNING Found '$sensor_debounce_time' (see binary_sensor->4->filters->0->delayed_on_off) which looks like a substitution, but 'sensor_debounce_time' was not declared
WARNING Found '$alarm' (see switch->0->pin->number) which looks like a substitution, but 'alarm' was not declared
WARNING Found '$zone5' (see switch->1->pin) which looks like a substitution, but 'zone5' was not declared
WARNING Found '$blink_on_state' (see globals->0->initial_value) which looks like a substitution, but 'blink_on_state' was not declared
WARNING Found '$status_led' (see light->0->pin->number) which looks like a substitution, but 'status_led' was not declared
WARNING Found '${warning_beep_pulse_time}' (see light->1->effects->0->strobe->colors->0->duration) which looks like a substitution, but 'warning_beep_pulse_time' was not declared
WARNING Found '${warning_beep_pause_time}' (see light->1->effects->0->strobe->colors->1->duration) which looks like a substitution, but 'warning_beep_pause_time' was not declared
WARNING Found '$zone5' (see output->0->pin->number) which looks like a substitution, but 'zone5' was not declared
Failed config

esphome: None
  name: konnected-87061b
  friendly_name: KonnectedPanel
  name_add_mac_suffix: False
  project: 
    
    project name needs to have a namespace.
    name: $project_name
    version: $project_version
  on_boot: 
    - priority: 800.0
      then: 
        - text_sensor.template.publish: 
            id: device_id
            state: !lambda |-

My yaml code is…

substitutions:
  name: konnected-87061b
  friendly_name: KonnectedPanel
  warning_beep_pin: $zone5

esphome:
  name: ${name}
  name_add_mac_suffix: false
  friendly_name: ${friendly_name}

packages:
  remote_package:
    url: https://github.com/konnected-io/konnected-esphome
    ref: master
    refresh: 5min
    files:
      - packages/core-esp8266.yaml
      - packages/alarm-panel/zone1.yaml
      - packages/alarm-panel/zone2.yaml
      - packages/alarm-panel/zone3.yaml
      - packages/alarm-panel/zone4.yaml
      - packages/alarm-panel/zone6.yaml
      - packages/alarm-panel/alarm.yaml
      - packages/wifi.yaml
      - packages/status-led.yaml
      - packages/warning-beep.yaml

switch:
  - platform: gpio
    pin: $zone5
    name: output5

api:
  encryption:
    key: ng8Yr5EAd......

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  manual_ip:
    static_ip: 192.168.30.4
    gateway: 192.168.30.1
    subnet: 255.255.255.0
    dns1: 192.168.30.2

Thanks

Looks like you have copied an older configuration. You can update the ESPHome device using the ESPHome Builder addon. There’s no need to re-flash using USB. Just update the top part of your YAML configuration to match our latest configuration:

Thank you that worked, apart form my panel showing as offline in esphome addon, but everything works ok

Still getting false triggers, so will start looking at that now as a separate issue

thanks again