homebridge-smartsystem 6.8.7 → 6.8.8
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/README.md +4 -3
- package/accessories/accessory.js +1 -1
- package/accessories/accessory.ts +1 -1
- package/accessories/dimmer.js +1 -1
- package/accessories/dimmer.ts +1 -1
- package/accessories/garagedoor.js +1 -1
- package/accessories/garagedoor.ts +1 -1
- package/accessories/lock.js +1 -1
- package/accessories/lock.ts +1 -1
- package/accessories/mood.js +1 -1
- package/accessories/mood.ts +1 -1
- package/accessories/temperature.js +1 -1
- package/accessories/temperature.ts +1 -1
- package/accessories/windowcovering.js +1 -1
- package/accessories/windowcovering.ts +1 -1
- package/duotecno/logger.js +1 -0
- package/duotecno/logger.ts +1 -0
- package/duotecno/types.ts +1 -1
- package/package.json +1 -1
- package/server/proxy.js +4 -1
- package/server/proxy.ts +3 -1
package/README.md
CHANGED
|
@@ -302,15 +302,16 @@ Homebridge UI version
|
|
|
302
302
|
- 4: better up-down values to and from HB
|
|
303
303
|
|
|
304
304
|
|
|
305
|
-
### v6.8.
|
|
305
|
+
### v6.8.x - 08/07/2025
|
|
306
306
|
- 0: first version including the proxy
|
|
307
307
|
- 1: max/min values for hbValues
|
|
308
308
|
- 2: HB up/down -> don't respond to motor unit's, only macro
|
|
309
309
|
- 3: remember request before the login kicked in (and redirect to that one, once the login was succesful)
|
|
310
310
|
- 4: now using only TCP sockets to the server
|
|
311
311
|
- 5: making it more robust / inline with repo-service version
|
|
312
|
-
- 6: removed double error handlers on cloudSocket
|
|
313
|
-
- 7: restart if no free connections
|
|
312
|
+
- 6: 26 aug / removed double error handlers on cloudSocket
|
|
313
|
+
- 7: 28 aug / restart if no free connections
|
|
314
|
+
- 8: 28 aug / less logging (through logConfig) for device set/get functions
|
|
314
315
|
|
|
315
316
|
## Hardware
|
|
316
317
|
A Raspberry Pi that connects to a Duotecno IP Node
|
package/accessories/accessory.js
CHANGED
|
@@ -86,7 +86,7 @@ class Accessory {
|
|
|
86
86
|
}
|
|
87
87
|
updateState() {
|
|
88
88
|
this.me.getCharacteristic(this.homebridge.Characteristic.On).updateValue(this.unit.status);
|
|
89
|
-
|
|
89
|
+
(0, logger_1.log)("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> on = " + this.unit.status);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
exports.Accessory = Accessory;
|
package/accessories/accessory.ts
CHANGED
|
@@ -107,7 +107,7 @@ export class Accessory {
|
|
|
107
107
|
|
|
108
108
|
updateState() {
|
|
109
109
|
this.me.getCharacteristic(this.homebridge.Characteristic.On).updateValue(this.unit.status);
|
|
110
|
-
|
|
110
|
+
log("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> on = " + this.unit.status);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
}
|
package/accessories/dimmer.js
CHANGED
|
@@ -69,7 +69,7 @@ class Dimmer extends accessory_1.Accessory {
|
|
|
69
69
|
}
|
|
70
70
|
updateState() {
|
|
71
71
|
this.me.getCharacteristic(this.homebridge.Characteristic.Brightness).updateValue(this.unit.value);
|
|
72
|
-
|
|
72
|
+
(0, logger_1.log)("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> Brightness = " + this.unit.value);
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
exports.Dimmer = Dimmer;
|
package/accessories/dimmer.ts
CHANGED
|
@@ -84,7 +84,7 @@ export class Dimmer extends Accessory {
|
|
|
84
84
|
|
|
85
85
|
updateState() {
|
|
86
86
|
this.me.getCharacteristic(this.homebridge.Characteristic.Brightness).updateValue(this.unit.value);
|
|
87
|
-
|
|
87
|
+
log("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> Brightness = " + this.unit.value);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
}
|
|
@@ -87,7 +87,7 @@ class GarageDoor extends accessory_1.Accessory {
|
|
|
87
87
|
// in response to Duotecno status messages
|
|
88
88
|
updateState() {
|
|
89
89
|
const value = this.DT2HB(this.unit.status);
|
|
90
|
-
|
|
90
|
+
(0, logger_1.log)("accessory", "Received updateState -> Homekit GarageDoor for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status + " / " + this.unit.value + " -> passing to HB: " + value);
|
|
91
91
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentDoorState).updateValue(value);
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -117,7 +117,7 @@ export class GarageDoor extends Accessory {
|
|
|
117
117
|
// in response to Duotecno status messages
|
|
118
118
|
updateState() {
|
|
119
119
|
const value = this.DT2HB(this.unit.status);
|
|
120
|
-
|
|
120
|
+
log("accessory", "Received updateState -> Homekit GarageDoor for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status + " / " + this.unit.value + " -> passing to HB: " + value);
|
|
121
121
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentDoorState).updateValue(value);
|
|
122
122
|
}
|
|
123
123
|
|
package/accessories/lock.js
CHANGED
|
@@ -69,7 +69,7 @@ class Lock extends accessory_1.Accessory {
|
|
|
69
69
|
}
|
|
70
70
|
// in response to Duotecno status messages
|
|
71
71
|
updateState() {
|
|
72
|
-
|
|
72
|
+
(0, logger_1.log)("accessory", "Received updateState -> Homekit Lock for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status);
|
|
73
73
|
this.me.getCharacteristic(this.homebridge.Characteristic.LockCurrentState).updateValue(this.unit.status);
|
|
74
74
|
}
|
|
75
75
|
}
|
package/accessories/lock.ts
CHANGED
|
@@ -89,7 +89,7 @@ export class Lock extends Accessory {
|
|
|
89
89
|
|
|
90
90
|
// in response to Duotecno status messages
|
|
91
91
|
updateState() {
|
|
92
|
-
|
|
92
|
+
log("accessory", "Received updateState -> Homekit Lock for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status);
|
|
93
93
|
this.me.getCharacteristic(this.homebridge.Characteristic.LockCurrentState).updateValue(this.unit.status);
|
|
94
94
|
}
|
|
95
95
|
|
package/accessories/mood.js
CHANGED
|
@@ -51,7 +51,7 @@ class Mood extends accessory_1.Accessory {
|
|
|
51
51
|
}
|
|
52
52
|
updateState() {
|
|
53
53
|
this.me.getCharacteristic(this.homebridge.Characteristic.On).updateValue(!!this.unit.value);
|
|
54
|
-
|
|
54
|
+
(0, logger_1.log)("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> On = " + !!this.unit.value);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
exports.Mood = Mood;
|
package/accessories/mood.ts
CHANGED
|
@@ -62,7 +62,7 @@ export class Mood extends Accessory {
|
|
|
62
62
|
}
|
|
63
63
|
updateState() {
|
|
64
64
|
this.me.getCharacteristic(this.homebridge.Characteristic.On).updateValue(!!this.unit.value);
|
|
65
|
-
|
|
65
|
+
log("accessory", "Received status change -> update accessory -> " + this.unit.getName() + " -> On = " + !!this.unit.value);
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
}
|
|
@@ -34,7 +34,7 @@ class Temperature extends accessory_1.Accessory {
|
|
|
34
34
|
}
|
|
35
35
|
updateState() {
|
|
36
36
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentTemperature).updateValue(this.unit.value / 10.0);
|
|
37
|
-
|
|
37
|
+
(0, logger_1.log)("accessory", "Received updateState -> Homekit Temperature -> " + this.unit.getName() + " -> temp = " + this.unit.value / 10.0);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
exports.Temperature = Temperature;
|
|
@@ -42,7 +42,7 @@ export class Temperature extends Accessory {
|
|
|
42
42
|
|
|
43
43
|
updateState() {
|
|
44
44
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentTemperature).updateValue((<number>this.unit.value) / 10.0);
|
|
45
|
-
|
|
45
|
+
log("accessory", "Received updateState -> Homekit Temperature -> " + this.unit.getName() + " -> temp = " +(<number>this.unit.value) / 10.0);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
}
|
|
@@ -134,7 +134,7 @@ class WindowCovering extends accessory_1.Accessory {
|
|
|
134
134
|
// called in response to Duotecno status update
|
|
135
135
|
updateState() {
|
|
136
136
|
const value = this.DT2HB(this.unit.status);
|
|
137
|
-
|
|
137
|
+
(0, logger_1.log)("accessory", "Received updateState -> Homekit WindowCovering for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status + " / " + this.unit.value + " -> passing: " + value);
|
|
138
138
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentPosition).updateValue(value);
|
|
139
139
|
if (this.unit.status == types_1.UnitState.kClosing) {
|
|
140
140
|
this.me.getCharacteristic(this.homebridge.Characteristic.TargetPosition).updateValue(0);
|
|
@@ -161,7 +161,7 @@ export class WindowCovering extends Accessory {
|
|
|
161
161
|
// called in response to Duotecno status update
|
|
162
162
|
updateState() {
|
|
163
163
|
const value = this.DT2HB(this.unit.status);
|
|
164
|
-
|
|
164
|
+
log("accessory", "Received updateState -> Homekit WindowCovering for " + this.unit.node.getName() + " - " + this.unit.getName() + " -> " + this.unit.status + " / " + this.unit.value + " -> passing: " + value);
|
|
165
165
|
|
|
166
166
|
this.me.getCharacteristic(this.homebridge.Characteristic.CurrentPosition).updateValue(value);
|
|
167
167
|
|
package/duotecno/logger.js
CHANGED
package/duotecno/logger.ts
CHANGED
package/duotecno/types.ts
CHANGED
|
@@ -17,7 +17,7 @@ export enum NodeType { kNoNode = 0, kStandardNode = 1, kGatewayNode = 4, kModemN
|
|
|
17
17
|
|
|
18
18
|
// States
|
|
19
19
|
export enum UnitState { kOpening = 4, kClosing = 3, kOpen = 2, kClosed = 1, kStopped = 0 };
|
|
20
|
-
export enum UnitMotorCmd { kClose = 5, kOpen = 4, kStop = 3};
|
|
20
|
+
export enum UnitMotorCmd { kClose = 5, kOpen = 4, kStop = 3 };
|
|
21
21
|
|
|
22
22
|
export enum UnitType {
|
|
23
23
|
kNoType = 0, kDimmer = 1, kSwitch = 2, kInput = 3,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-smartsystem",
|
|
3
3
|
"displayname": "Duotecno Bridge",
|
|
4
|
-
"version": "6.8.
|
|
4
|
+
"version": "6.8.8",
|
|
5
5
|
"description": "SmartServer (Proxy TCP sockets to the cloud, Smappee MQTT, Duotecno IP Nodes, Homekit interface)",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"author": "Johan Coppieters",
|
package/server/proxy.js
CHANGED
|
@@ -106,7 +106,10 @@ function cleanStart(restart = false) {
|
|
|
106
106
|
// check every 5 second for a free connection
|
|
107
107
|
connectionChecker = setInterval(() => {
|
|
108
108
|
const freeConnection = gCloudConnections.find((ctx) => (!ctx.deviceSocket) && ctx.cloudSocket && (ctx.cloudSocket.readyState === 'open'));
|
|
109
|
-
if (
|
|
109
|
+
if (freeConnection) {
|
|
110
|
+
log(`[PROXY] → [CLOUD] Found free connection #${freeConnection.uniqueId} to the Cloud -> we're still ok.`);
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
110
113
|
error(`[PROXY] → [CLOUD] No free connections available, restarting proxy. ***************************`);
|
|
111
114
|
cleanStart(true);
|
|
112
115
|
}
|
package/server/proxy.ts
CHANGED
|
@@ -137,7 +137,9 @@ export function cleanStart(restart: boolean = false) {
|
|
|
137
137
|
const freeConnection = gCloudConnections.find((ctx: Context) =>
|
|
138
138
|
(!ctx.deviceSocket) && ctx.cloudSocket && (ctx.cloudSocket.readyState === 'open')
|
|
139
139
|
);
|
|
140
|
-
if (
|
|
140
|
+
if (freeConnection) {
|
|
141
|
+
log(`[PROXY] → [CLOUD] Found free connection #${freeConnection.uniqueId} to the Cloud -> we're still ok.`);
|
|
142
|
+
} else {
|
|
141
143
|
error(`[PROXY] → [CLOUD] No free connections available, restarting proxy. ***************************`);
|
|
142
144
|
cleanStart(true);
|
|
143
145
|
}
|