Skip to content

Commit 515ca53

Browse files
klaasnicolaasfabaff
authored andcommitted
🚜 Merges/Redirect SPC component pages (#8803)
* 🚜 Merges/Redirect SPC component pages * ✏️ Tweak
1 parent 3e66aba commit 515ca53

File tree

3 files changed

+40
-56
lines changed

3 files changed

+40
-56
lines changed

β€Žsource/_components/alarm_control_panel.spc.markdown

Lines changed: 0 additions & 35 deletions
This file was deleted.

β€Žsource/_components/binary_sensor.spc.markdown

Lines changed: 0 additions & 20 deletions
This file was deleted.

β€Žsource/_components/spc.markdown

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,27 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
ha_category: Hub
10+
ha_category:
11+
- Hub
12+
- Alarm
13+
- Binary Sensor
1114
ha_release: 0.47
1215
logo: vanderbilt_spc.png
16+
ha_iot_class: "Local Push"
17+
redirect_from:
18+
- /components/binary_sensor.spc/
19+
- /components/alarm_control_panel.spc/
1320
---
1421

1522
Home Assistant has support to integrate your [Vanderbilt SPC](http://www.spc-intruder-detection.com/ssp-spc/) alarm panel and any connected motion, door and smoke sensors.
1623

1724
Integration with SPC is done through a third-party API gateway called [SPC Web Gateway](http://www.lundix.se/smarta-losningar/) which must be installed and configured somewhere on your network.
1825

26+
There is currently support for the following device types within Home Assistant:
27+
28+
- [Alarm](#alarm)
29+
- [Binary Sensor](#binary-sensor)
30+
1931
Home Assistant needs to know where to find the SPC Web Gateway API endpoints, to configure this add the following section to your `configuration.yaml` file:
2032

2133
```yaml
@@ -37,3 +49,30 @@ ws_url:
3749
{% endconfiguration %}
3850

3951
Supported sensors will be automatically discovered and added, however they will be hidden by default.
52+
53+
## {% linkable_title Alarm %}
54+
55+
The `spc` alarm control panel platform allows you to control your [Vanderbilt SPC](https://www.spcsupportinfo.com/) alarms.
56+
57+
The `changed_by` attribute enables one to be able to take different actions depending on who armed/disarmed the alarm in [automation](/getting-started/automation/).
58+
59+
```yaml
60+
automation:
61+
- alias: Alarm status changed
62+
trigger:
63+
- platform: state
64+
entity_id: alarm_control_panel.alarm_1
65+
action:
66+
- service: notify.notify
67+
data_template:
68+
message: >
69+
{% raw %}Alarm changed from {{ trigger.from_state.state }}
70+
to {{ trigger.to_state.state }}
71+
by {{ trigger.to_state.attributes.changed_by }}{% endraw %}
72+
```
73+
74+
## {% linkable_title Binary Sensor %}
75+
76+
The `spc` platform allows you to get data from your [Vanderbilt SPC](http://www.spc-intruder-detection.com/ssp-spc/) binary sensors from within Home Assistant.
77+
78+
Check the [type/class](/components/binary_sensor/) list for a possible visualization of your zone. Currently motion, smoke and door sensors are supported.

0 commit comments

Comments
Β (0)