mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Abode Cloud Push and new components (#3224)
* Changed abode sensors to Cloud Push. Added additional binary sensors. Added lock, cover, and switches. Added abode logo to all pages. * Fixed typo's.
This commit is contained in:
parent
edd35b2414
commit
e0b9681ef8
11
.project
Normal file
11
.project
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>home-assistant.github.io</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: abode.jpg
|
logo: abode.jpg
|
||||||
ha_category: Hub
|
ha_category: Hub
|
||||||
ha_release: 0.52
|
ha_release: 0.52
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `abode` component will allow users to integrate their Abode Home Security systems into Home Assistant and use its alarm system and sensors to automate their homes.
|
The `abode` component will allow users to integrate their Abode Home Security systems into Home Assistant and use its alarm system and sensors to automate their homes.
|
||||||
@ -19,10 +19,11 @@ Please visit the [Abode website](https://goabode.com/) for further information a
|
|||||||
|
|
||||||
There is currently support for the following device types within Home Assistant:
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
- [Binary Sensor](/components/binary_sensor.abode/): Reports on `Door Contacts` (open or close) and `Motion Camera` (motion detected or not)
|
|
||||||
- [Alarm Control Panel](/components/alarm_control_panel.abode/): Reports on current alarm status and can be used to arm/disarm the system
|
- [Alarm Control Panel](/components/alarm_control_panel.abode/): Reports on current alarm status and can be used to arm/disarm the system
|
||||||
|
- [Binary Sensor](/components/binary_sensor.abode/): Reports on `Door Contacts` (open or closed), `Motion Camera` (motion detected or not), `Water Sensors` (detected or not), `Keypad` (online or not), `Glass Break` (online or not), `Status Display` (online or not)
|
||||||
The component currently polls every 30 seconds, so device status may not be immediately reflected in Home Assistant.
|
- [Cover](/components/cover.abode/): Reports on `Secure Barriers` (open or closed) and can be used to open/close the cover
|
||||||
|
- [Lock](/components/cover.abode/): Reports on `Door Locks` (locked or unlocked) and can be used to lock/unlock the door
|
||||||
|
- [Switch](/components/switch.abode/): Reports on `Power Switch Sensors` (on or off) and can be used to turn the power switch sensor on/off
|
||||||
|
|
||||||
An `abode` section must be present in the `configuration.yaml` file and contain the following options as required:
|
An `abode` section must be present in the `configuration.yaml` file and contain the following options as required:
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
logo: abode.jpg
|
logo: abode.jpg
|
||||||
ha_category: Alarm
|
ha_category: Alarm
|
||||||
ha_release: 0.52
|
ha_release: 0.52
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,14 +7,14 @@ sidebar: true
|
|||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
logo: alarmdecoder.png
|
logo: abode.jpg
|
||||||
ha_release: 0.52
|
ha_release: 0.52
|
||||||
ha_category: Binary Sensor
|
ha_category: Binary Sensor
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Push"
|
||||||
---
|
---
|
||||||
|
|
||||||
The `abode` security control panel platform allows you to control your [Abode](https://goabode.com/) alarms.
|
The `abode` security control panel platform allows you to control your [Abode](https://goabode.com/) alarms.
|
||||||
|
|
||||||
This component will automatically add `Door Contact` and `Motion Camera` binary sensors that are configured in your Abode account.
|
This component will automatically add `Door Contact`, `Motion Camera`, `Water Sensor`, `Keypad`, `Glass Break`, and `Status Display` binary sensors that are configured in your Abode account.
|
||||||
|
|
||||||
The requirement is that you have setup your [Abode hub](/components/abode/).
|
The requirement is that you have setup your [Abode hub](/components/abode/).
|
||||||
|
20
source/_components/cover.abode.markdown
Normal file
20
source/_components/cover.abode.markdown
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Abode Cover"
|
||||||
|
description: "Instructions how to integrate Abode covers into Home Assistant."
|
||||||
|
date: 2017-08-26 13:28
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: abode.jpg
|
||||||
|
ha_release: 0.52
|
||||||
|
ha_category: Cover
|
||||||
|
ha_iot_class: "Cloud Push"
|
||||||
|
---
|
||||||
|
|
||||||
|
The `abode` security control panel platform allows you to control your [Abode](https://goabode.com/) alarms.
|
||||||
|
|
||||||
|
This component will automatically add `Secure Barriers` configured in your Abode account.
|
||||||
|
|
||||||
|
The requirement is that you have setup your [Abode hub](/components/abode/).
|
20
source/_components/lock.abode.markdown
Normal file
20
source/_components/lock.abode.markdown
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Abode Lock"
|
||||||
|
description: "Instructions how to integrate Abode locks into Home Assistant."
|
||||||
|
date: 2017-08-26 13:28
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: abode.jpg
|
||||||
|
ha_release: 0.52
|
||||||
|
ha_category: Lock
|
||||||
|
ha_iot_class: "Cloud Push"
|
||||||
|
---
|
||||||
|
|
||||||
|
The `abode` security control panel platform allows you to control your [Abode](https://goabode.com/) alarms.
|
||||||
|
|
||||||
|
This component will automatically add `Door Locks` configured in your Abode account.
|
||||||
|
|
||||||
|
The requirement is that you have setup your [Abode hub](/components/abode/).
|
20
source/_components/switch.abode.markdown
Normal file
20
source/_components/switch.abode.markdown
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Abode Switch"
|
||||||
|
description: "Instructions how to integrate Abode switches into Home Assistant."
|
||||||
|
date: 2017-08-26 13:28
|
||||||
|
sidebar: true
|
||||||
|
comments: false
|
||||||
|
sharing: true
|
||||||
|
footer: true
|
||||||
|
logo: abode.jpg
|
||||||
|
ha_release: 0.52
|
||||||
|
ha_category: Switch
|
||||||
|
ha_iot_class: "Cloud Push"
|
||||||
|
---
|
||||||
|
|
||||||
|
The `abode` security control panel platform allows you to control your [Abode](https://goabode.com/) alarms.
|
||||||
|
|
||||||
|
This component will automatically add `Power Switch Sensors` configured in your Abode account.
|
||||||
|
|
||||||
|
The requirement is that you have setup your [Abode hub](/components/abode/).
|
Loading…
x
Reference in New Issue
Block a user