homebridge-enphase-envoy 10.2.7-beta.9 → 10.3.0-beta.0
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/CHANGELOG.md +8 -0
- package/README.md +4 -3
- package/config.schema.json +39 -27
- package/package.json +1 -1
- package/src/envoydevice.js +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- after update to v10.0.0 and above the accessory and bridge need to be removed from the homebridge / Home.app and added again
|
|
11
11
|
|
|
12
|
+
## [10.3.0] - (19.10.2025)
|
|
13
|
+
|
|
14
|
+
## Changes
|
|
15
|
+
|
|
16
|
+
- added support for Eve Energy Meter (Production, Consumption Net, Consumption Total)
|
|
17
|
+
- added network interface service and characteristics
|
|
18
|
+
- cleanup
|
|
19
|
+
|
|
12
20
|
## [10.2.6] - (18.10.2025)
|
|
13
21
|
|
|
14
22
|
## Changes
|
package/README.md
CHANGED
|
@@ -108,9 +108,10 @@ The `homebridge-enphase-envoy` plugin integrates Enphase Envoy solar energy moni
|
|
|
108
108
|
| `enlightenPasswd` | | string | Enlighten password |
|
|
109
109
|
| `envoyToken` | | string | Token if you selected `2 - Your Own Generated Token` for envoyFirmware7xxTokenGenerationMode |
|
|
110
110
|
| `envoyTokenInstaller` | | boolean | Enable if you are using the installer token |
|
|
111
|
-
| `lockControl` | |
|
|
112
|
-
| `
|
|
113
|
-
| `
|
|
111
|
+
| `lockControl` | | key | `Lock Control` for enable?disable system control |
|
|
112
|
+
| | `lockControl.enable` | boolean | Enables system control auto lock accessory |
|
|
113
|
+
| | `lockControl.time` | number | `System Auto Lock Control` time (seconds) |
|
|
114
|
+
| | `lockControl.namePrefix` | boolean | Use accessory name for prefix |
|
|
114
115
|
| `energyMeter` | | boolean | Enables energy meter as a axtra accessory to display charts in EVE app |
|
|
115
116
|
| `productionStateSensor` | | key | `Production State Sensor` for production state monitoring |
|
|
116
117
|
| | `name` | string | Accessory name for Home app |
|
package/config.schema.json
CHANGED
|
@@ -145,30 +145,32 @@
|
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
"lockControl": {
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
"
|
|
148
|
+
"enable": {
|
|
149
|
+
"title": "Control",
|
|
150
|
+
"type": "boolean",
|
|
151
|
+
"default": true,
|
|
152
|
+
"description": "Enables system control auto lock accessory"
|
|
153
|
+
},
|
|
154
|
+
"time": {
|
|
155
|
+
"title": "Auto Lock Time",
|
|
156
|
+
"type": "number",
|
|
157
|
+
"minimum": 1,
|
|
158
|
+
"maximum": 60,
|
|
159
|
+
"multipleOf": 1,
|
|
160
|
+
"default": 30,
|
|
161
|
+
"description": "System control auto lock time (seconds)",
|
|
162
|
+
"condition": {
|
|
163
|
+
"functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"namePrefix": {
|
|
167
|
+
"title": "Prefix",
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"default": false,
|
|
170
|
+
"description": "Use accessory name as a prefix",
|
|
171
|
+
"condition": {
|
|
172
|
+
"functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
|
|
173
|
+
}
|
|
172
174
|
}
|
|
173
175
|
},
|
|
174
176
|
"energyMeter": {
|
|
@@ -3625,9 +3627,19 @@
|
|
|
3625
3627
|
"type": "section",
|
|
3626
3628
|
"title": "System Control",
|
|
3627
3629
|
"items": [
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3630
|
+
{
|
|
3631
|
+
"key": "devices[].lockControl",
|
|
3632
|
+
"type": "section",
|
|
3633
|
+
"title": "Lock Control",
|
|
3634
|
+
"description": "Section for enabling additional accessory for System control",
|
|
3635
|
+
"expandable": true,
|
|
3636
|
+
"expanded": false,
|
|
3637
|
+
"items": [
|
|
3638
|
+
"devices[].lockControl.enable",
|
|
3639
|
+
"devices[].lockControl.time",
|
|
3640
|
+
"devices[].lockControl.namePrefix"
|
|
3641
|
+
]
|
|
3642
|
+
}
|
|
3631
3643
|
]
|
|
3632
3644
|
}
|
|
3633
3645
|
]
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"displayName": "Enphase Envoy",
|
|
4
4
|
"name": "homebridge-enphase-envoy",
|
|
5
|
-
"version": "10.
|
|
5
|
+
"version": "10.3.0-beta.0",
|
|
6
6
|
"description": "Homebridge p7ugin for Photovoltaic Energy System manufactured by Enphase.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "grzegorz914",
|
package/src/envoydevice.js
CHANGED
|
@@ -25,9 +25,9 @@ class EnvoyDevice extends EventEmitter {
|
|
|
25
25
|
this.displayType = device.displayType;
|
|
26
26
|
this.energyMeter = device.energyMeter || false;
|
|
27
27
|
|
|
28
|
-
this.lockControl = device.lockControl || false;
|
|
29
|
-
this.lockControlPrefix = device.
|
|
30
|
-
this.lockControTime = (device.
|
|
28
|
+
this.lockControl = device.lockControl?.enable || false;
|
|
29
|
+
this.lockControlPrefix = device.lockControl?.prefix || false;
|
|
30
|
+
this.lockControTime = (device.lockControl?.time || 30) * 1000;
|
|
31
31
|
this.productionStateSensor = device.productionStateSensor || {};
|
|
32
32
|
this.plcLevelCheckControl = device.plcLevelControl || {};
|
|
33
33
|
|
|
@@ -3077,7 +3077,6 @@ class EnvoyDevice extends EventEmitter {
|
|
|
3077
3077
|
});
|
|
3078
3078
|
|
|
3079
3079
|
this.energyMeterServices.push(energyMeterService);
|
|
3080
|
-
|
|
3081
3080
|
accessories.push(accessory);
|
|
3082
3081
|
}
|
|
3083
3082
|
break;
|