Update envisalink component (#7919)

This commit is contained in:
Dan Cinnamon 2019-01-02 07:26:40 -06:00 committed by Martin Hjelmare
parent 250f8ec3c2
commit 99c0b70aaa

View File

@ -41,6 +41,7 @@ envisalink:
evl_version: 3 evl_version: 3
keepalive_interval: 60 keepalive_interval: 60
zonedump_interval: 30 zonedump_interval: 30
timeout: 10
panic_type: Police panic_type: Police
zones: zones:
11: 11:
@ -72,8 +73,8 @@ password:
required: true required: true
type: string type: string
code: code:
description: Your alarm panel's code, for authenticating user input during arm/disarm. description: Your alarm panel's code, for authenticating user input during arm/disarm. If you do not provide this value, the component will prompt the user to enter the code at runtime.
required: true required: false
type: string type: string
port: port:
description: Which network port to connect with. description: Which network port to connect with.
@ -95,6 +96,11 @@ zonedump_interval:
required: false required: false
default: 30 default: 30
type: integer type: integer
timeout:
description: A network connectivity timeout when communicating with the envisalink. If connection is not obtained by this time (in seconds) the component will stop trying to connect.
required: false
default: 10
type: integer
panic_type: panic_type:
description: "Both DSC and Honeywell boards support a panic alarm. This is used when the alarm_trigger service is called in Home Assistant. This determines which type of panic alarm to raise. Valid values are: Police, Fire, Ambulance." description: "Both DSC and Honeywell boards support a panic alarm. This is used when the alarm_trigger service is called in Home Assistant. This determines which type of panic alarm to raise. Valid values are: Police, Fire, Ambulance."
required: false required: false
@ -134,3 +140,4 @@ The following services are supported by Envisalink and can be used to script or
- **alarm_arm_away**: Arms the alarm in standard away mode. - **alarm_arm_away**: Arms the alarm in standard away mode.
- **alarm_trigger**: Trigger an alarm on the Envisalink connected alarm system. For example, a newer zwave/zigbee sensor can now be integrated into a legacy alarm system using a Home Assistant automation. - **alarm_trigger**: Trigger an alarm on the Envisalink connected alarm system. For example, a newer zwave/zigbee sensor can now be integrated into a legacy alarm system using a Home Assistant automation.
- **envisalink_alarm_keypress**: Sends a string of up to 6 characters to the alarm. *DSC alarms only* - **envisalink_alarm_keypress**: Sends a string of up to 6 characters to the alarm. *DSC alarms only*
- **invoke_custom_function**: Invokes a custom PGM function. *DSC alarms only*