Struggling with manual alarm

with the alarm_control_panel.home_alarm set to armed home and I trip a binary_sensor I get the push bullet notice but I never get status change of alarm_control_panel.home_alarm to triggered, nor do I get the siren turning. This is my setup. Thanks

- alias: '[Alarm] Triggered while armed home'
  trigger:
    - platform: state
      entity_id: binary_sensor.back_door_alarm_opened
      to: 'on'
    - platform: state
      entity_id: binary_sensor.front_door_alarm_opened
      to: 'on'
    - platform: state
      entity_id: binary_sensor.linear_nortek_security_control_llc_wadwaz_1_door_window_sensor_sensor
      to: 'on'
  condition:
    - condition: state
      entity_id: alarm_control_panel.home_alarm
      state: armed_home
  action:
    - service: alarm_control_panel.alarm_trigger
      entity_id: alarm_control_panel.home_alarm
    - service: notify.pushbullet
      data:
        title: HA - ALARM TRIGGERED
        message: 'test armed_home tripped'

- alias: '[Alarm] Triggered'
  trigger:
    platform: state
    entity_id: alarm_control_panel.home_alarm
    to: 'triggered'
  action:
    - service: switch.turn_on
      entity_id:  switch.elexa_consumer_products_inc_dome_siren_switch
    - service: notify.pushbullet
      data:
        title: HA - ALARM TRIGGERED
        message: 'ALARM has been triggered {{ trigger.to_state.attributes.friendly_name }}'

By default the alarm goes into a pending state for 60 sec when a sensor gets triggered, then goes into triggered state. Did you wait for 60 sec?

Thanks for your reply…what is was that was stopping everything from executing was I had an old version of countdown360.js. Once I copied over the latest file everthing worked