homebridge-enphase-envoy 10.3.4 → 10.3.5

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,13 @@ 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.5] - (13.11.2025)
13
+
14
+ ## Changes
15
+
16
+ - added encharges support connected to all phases
17
+ - cleanup
18
+
12
19
  ## [10.3.4] - (12.11.2025)
13
20
 
14
21
  ## Changes
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.3.4",
5
+ "version": "10.3.5",
6
6
  "description": "Homebridge p7ugin for Photovoltaic Energy System manufactured by Enphase.",
7
7
  "license": "MIT",
8
8
  "author": "grzegorz914",
package/src/constants.js CHANGED
@@ -251,7 +251,8 @@ export const ApiCodes = {
251
251
  "ph-a": "L1",
252
252
  "ph-b": "L2",
253
253
  "ph-c": "L3",
254
- "ph-unk": "Unknown Phase",
254
+ "ph-all": "All",
255
+ "ph-unk": "Unknown",
255
256
  "pmu": "Power Meter Unit",
256
257
  "power-on-unused-phase": "Powwr on unused phase",
257
258
  "production": "Production",
package/src/envoydata.js CHANGED
@@ -1741,9 +1741,9 @@ class EnvoyData extends EventEmitter {
1741
1741
  }));
1742
1742
 
1743
1743
  this.pv.inventory.esubs.encharges.devices = arr;
1744
- this.pv.inventory.esubs.encharges.phaseA = arr.some(d => d.phase === 'ph-a');
1745
- this.pv.inventory.esubs.encharges.phaseB = arr.some(d => d.phase === 'ph-b');
1746
- this.pv.inventory.esubs.encharges.phaseC = arr.some(d => d.phase === 'ph-c');
1744
+ this.pv.inventory.esubs.encharges.phaseA = arr.some(d => d.phase === 'ph-a' || d.phase === 'ph-all');
1745
+ this.pv.inventory.esubs.encharges.phaseB = arr.some(d => d.phase === 'ph-b' || d.phase === 'ph-all');
1746
+ this.pv.inventory.esubs.encharges.phaseC = arr.some(d => d.phase === 'ph-c' || d.phase === 'ph-all');
1747
1747
 
1748
1748
  this.feature.inventory.esubs.encharges.supported = true;
1749
1749
  this.feature.inventory.esubs.encharges.installed = true;