Konnected Component in Home Assistant

Hi, can anyone share what the Konnected component looks like in Home Assistant by default? Are there meant to be buttons to arm/disarm the system? I'm not getting anything beyond the 5 sensor icons corresponding to my connected zones at the top of the home page. It would be much appreciated.


I would take a look at the manual alarm components of HA.  I used the manual mqtt alarm panel, because I want to be able to disarm from a raspberry pi running some code on Android Things.


Manual Alarm: https://www.home-assistant.io/components/alarm_control_panel.manual/

Manual MQTT Alarm: https://www.home-assistant.io/components/alarm_control_panel.manual_mqtt/

Android Things Alarm Panel: https://github.com/thanksmister/androidthings-mqtt-alarm-panel

Thanks Sean, I've managed to get Manual Alarm enabled with a bunch of Automations written to interact with it.


Do you know if the manual MQTT alarm component can work with in conjunction with a fire tablet as an alarm control panel, home assistant, and konnected? I really don't want to have to buy two separate raspberry pi's to implement what I am trying to do.

The MQTT part is what allows you to change the settings or read the state from any other device.  As long as you can subscribe to the MQTT messages, you could use anything to read the state of the alarm panel.

Ok, thank you for the response I appreciate it.

I need help. 

I want to use ThanksMister! android app. I installed it on my smartphone, configured my MQTT broker, Arm/Desarm interaction works well but I'm not able to trig an alarm, I think I have problem with entity_id in my automation.


Can you help me please?

 

konnected:
  access_token: 12345678
  api_host: http://192.168.0.141:8123
  devices:
    - id: b4e62d36e91b
      binary_sensors:
        - pin: 1
          type: motion
          name: Office Motion
        - pin: 2
          type: door
          name: Office Door

alarm_control_panel:

  • platform: manual_mqtt
    name: alarmpanel
    state_topic: home/alarm
    command_topic: home/alarm/set
    pending_time: 60
    trigger_time: 1800
    disarm_after_trigger: false
    delay_time: 30
    armed_home:
    pending_time: 0
    delay_time: 0
    armed_away:
    pending_time: 60
    delay_time: 30

automation:

  • alias: ‘Trigger alarm while armed home’
    trigger:
    • platform: state
      entity_id: binary_sensor.office_motion
      to: ‘on’
    • platform: state
      entity_id: binary_sensor.office_door
      to: ‘on’
      condition:
    • condition: state
      entity_id: alarm_control_panel.ha_alarm
      state: ‘armed_home’
      action:
      service: alarm_control_panel.alarm_trigger
      entity_id: alarm_control_panel.ha_alarm

 


I looked at my automation and the only thing i noticed different was that the state: under the condition did not use quotes.


 

- alias: Trigger alarm if doors/windows open while home
  trigger:
  - platform: state
    entity_id: group.security_doors
    to: 'on'
  condition:
  - condition: state
    entity_id: alarm_control_panel.ha_alarm
    state: armed_home
  action:
  - service: alarm_control_panel.alarm_trigger
    entity_id: alarm_control_panel.ha_alarm
  - service: notify.pushover
    data:
      message: Alarm Tiggered (Home)