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 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` | | boolean | Enables system control auto lock accessory |
112
- | `lockControlPrefix` | | boolean | Use accessory name for prefix |
113
- | `lockControlTime` | | number | `System Auto Lock Control` time (seconds) |
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 |
@@ -145,30 +145,32 @@
145
145
  }
146
146
  },
147
147
  "lockControl": {
148
- "title": "Control",
149
- "type": "boolean",
150
- "default": true,
151
- "description": "Enables system control auto lock accessory"
152
- },
153
- "lockControlPrefix": {
154
- "title": "Prefix",
155
- "type": "boolean",
156
- "default": false,
157
- "description": "Use accessory name as a prefix",
158
- "condition": {
159
- "functionBody": "return model.devices[arrayIndices].lockControl === true"
160
- }
161
- },
162
- "lockControlTime": {
163
- "title": "Auto Lock Time",
164
- "type": "number",
165
- "minimum": 1,
166
- "maximum": 60,
167
- "multipleOf": 1,
168
- "default": 30,
169
- "description": "System control auto lock time (seconds)",
170
- "condition": {
171
- "functionBody": "return model.devices[arrayIndices].lockControl === true"
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
- "devices[].lockControl",
3629
- "devices[].lockControlPrefix",
3630
- "devices[].lockControlTime"
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.2.7-beta.9",
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",
@@ -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.lockControlPrefix || false;
30
- this.lockControTime = (device.lockControlTime || 30) * 1000;
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;