Haha!!! Actually as i see around there are really many people out there using Crow Alarms and Arrowhead AAP Alarms, and Crow or AAP IP Modules, very few people using AAP firmware loaded Crow IP Modules, and only us two having all these plus using homeassistant 
Crow is an Israeli company shipping worldwide, AAP is a NZ company working with Crow Industries and shipping mainly to NZ and Australia. In my home country Turkey, Crow and DSC are the two main actors in alarm industry.
Some years ago, it took me some mails to make the AAP tech guys convince to have a firmware on IP module just for home automation guys like us⦠And i was the only beta tester for that firmware and feed them with all the bugs in the firmware for them to correct. After 6-7 tries and lots of testing, they came up with this firmware and i am happy that i convinced them so. They still did not advertise this possibility why i donāt know⦠Otherwise i was going to spend a hell of a money to change my current perfectly working alarm. And also, the guys at AAP support were the best i have ever encountered in any product support; they tirelessly helped me a lot during the processā¦
Btw, i have been testing the current 0.20; and everything seems fine. Here is my automations for reference:
Bedtime and Leaving the house (Manual set of arm_away or arm)
- alias: Shut Everything Down on Bedtime
trigger:
- platform: template
value_template: '{{is_state_attr(''sensor.area_a_keypad'',''disarmed'',
False)}}'
action:
- service: light.turn_off
data:
entity_id:
- light.mutfak
- light.salon
- service: media_player.turn_off
entity_id: media_player.salon_tv
- service: cover.close_cover
data:
entity_id:
- cover.qubino_goap_zmnhcdx_flush_shutter_level_2
- cover.qubino_goap_zmnhcdx_flush_shutter_level
- cover.qubino_goap_zmnhcdx_flush_shutter_level_3
- cover.qubino_goap_zmnhcdx_flush_shutter_level_10
- cover.qubino_goap_zmnhcdx_flush_shutter_level_7
- cover.qubino_goap_zmnhcdx_flush_shutter_level_6
- cover.qubino_goap_zmnhcdx_flush_shutter_level_8
- cover.qubino_goap_zmnhcdx_flush_shutter_level_4
- cover.qubino_goap_zmnhcdx_flush_shutter_level_9
- cover.qubino_goap_zmnhcdx_flush_shutter_level_13
- cover.qubino_goap_zmnhcdx_flush_shutter_level_5
# SUMMER TIME:
# - service: cover.close_cover
# data_template:
# entity_id: >
# {%- if is_state_attr('sensor.area_a_keypad','armed',True) %}
# cover.qubino_goap_zmnhcdx_flush_shutter_level_5
# {%- endif %}
Coming Home:
- alias: Coming Home
trigger:
- platform: template
value_template: '{{is_state_attr(''binary_sensor.giris_pir'',''alarm'',
True)}}'
condition:
- condition: state
entity_id: alarm_control_panel.area_a
state: 'armed_away'
- condition: state
entity_id: group.family
state: 'on'
action:
- service: alarm_control_panel.alarm_disarm
data:
entity_id: alarm_control_panel.area_a
code: !secret crow_code
- service: cover.open_cover
data:
entity_id:
- cover.qubino_goap_zmnhcdx_flush_shutter_level_2
- cover.qubino_goap_zmnhcdx_flush_shutter_level
- cover.qubino_goap_zmnhcdx_flush_shutter_level_3
- cover.qubino_goap_zmnhcdx_flush_shutter_level_10
- cover.qubino_goap_zmnhcdx_flush_shutter_level_7
- service: light.turn_on
data_template:
entity_id: >
{%- if is_state('sun.sun','below_horizon') %}
group.all_lights
{%- endif %}
- service: cover.open_cover
data_template:
entity_id: >
{%- if is_state('sun.sun','above_horizon') %}
cover.qubino_goap_zmnhcdx_flush_shutter_level_5
{%- endif %}