You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/spc.markdown
+40-1Lines changed: 40 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,27 @@ sidebar: true
7
7
comments: false
8
8
sharing: true
9
9
footer: true
10
-
ha_category: Hub
10
+
ha_category:
11
+
- Hub
12
+
- Alarm
13
+
- Binary Sensor
11
14
ha_release: 0.47
12
15
logo: vanderbilt_spc.png
16
+
ha_iot_class: "Local Push"
17
+
redirect_from:
18
+
- /components/binary_sensor.spc/
19
+
- /components/alarm_control_panel.spc/
13
20
---
14
21
15
22
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.
16
23
17
24
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.
18
25
26
+
There is currently support for the following device types within Home Assistant:
27
+
28
+
-[Alarm](#alarm)
29
+
-[Binary Sensor](#binary-sensor)
30
+
19
31
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:
20
32
21
33
```yaml
@@ -37,3 +49,30 @@ ws_url:
37
49
{% endconfiguration %}
38
50
39
51
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