mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00

* Various small fixes Add configuration and other titles Remove empty lines Fix indentation for configuration block Reorder key list to be in line with the rest Delete empty default value and fixed value type * None is a valid value
48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "Alarm.com Alarm Control Panel"
|
|
description: "Instructions on how to integrate Alarm.com into Home Assistant."
|
|
date: 2016-01-14 22:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: alarmdotcom.png
|
|
ha_category: Alarm
|
|
ha_release: 0.11
|
|
---
|
|
|
|
The `alarmdotcom` platform is consuming the information provided by [Alarm.com](https://www.alarm.com/).
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
To enable this, add the following lines to your `configuration.yaml`:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
alarm_control_panel:
|
|
platform: alarmdotcom
|
|
username: YOUR_USERNAME
|
|
password: YOUR_PASSWORD
|
|
```
|
|
|
|
{% configuration %}
|
|
username:
|
|
description: Username for the Alarm.com account.
|
|
required: true
|
|
type: string
|
|
password:
|
|
description: Password for the Alarm.com account.
|
|
required: true
|
|
type: string
|
|
name:
|
|
description: The name of the alarm.
|
|
required: false
|
|
default: Alarm.com
|
|
type: string
|
|
code:
|
|
description: Specifies a code to enable or disable the alarm in the frontend.
|
|
required: false
|
|
type: integer
|
|
{% endconfiguration %}
|