homebridge-securitysystem 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-securitysystem",
|
|
3
3
|
"displayName": "Homebridge Security System",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.1",
|
|
5
5
|
"description": "Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"scripts": {
|
package/src/index.js
CHANGED
|
@@ -194,6 +194,7 @@ function SecuritySystem(log, config) {
|
|
|
194
194
|
this.tripAwaySwitchService.addCharacteristic(Characteristic.ConfiguredName);
|
|
195
195
|
|
|
196
196
|
this.tripAwaySwitchService
|
|
197
|
+
.setCharacteristic(Characteristic.ConfiguredName, "Trip Away")
|
|
197
198
|
.getCharacteristic(Characteristic.On)
|
|
198
199
|
.on("get", this.getTripAwaySwitch.bind(this))
|
|
199
200
|
.on("set", this.setTripAwaySwitch.bind(this));
|