homebridge-enphase-envoy 10.0.2-beta.21 → 10.0.2-beta.22
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/envoydevice.js +3 -1
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.0.2-beta.
|
|
5
|
+
"version": "10.0.2-beta.22",
|
|
6
6
|
"description": "Homebridge plugin for Photovoltaic Energy System manufactured by Enphase.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "grzegorz914",
|
package/src/envoydevice.js
CHANGED
|
@@ -7945,7 +7945,6 @@ class EnvoyDevice extends EventEmitter {
|
|
|
7945
7945
|
const updateDetailedDevicesData = updateInventory || this.feature.meters.installed ? await this.updateDetailedDevicesData(true) : false;
|
|
7946
7946
|
const pcusData = updateInventory ? await this.updatePcusData() : false;
|
|
7947
7947
|
const nsrbsData = updateInventory ? await this.updateNsrbsData() : false;
|
|
7948
|
-
const acbsData = this.feature.inventory.acbs.installed ? await this.updateAcbsData() : false;
|
|
7949
7948
|
|
|
7950
7949
|
// Production
|
|
7951
7950
|
const refreshProduction = this.feature.info.firmware < 824 ? await this.updateProduction() : false;
|
|
@@ -7954,6 +7953,9 @@ class EnvoyDevice extends EventEmitter {
|
|
|
7954
7953
|
const refreshProductionCt = this.feature.inventory.acbs.installed || this.feature.meters.installed ? await this.updateProductionCt() : false;
|
|
7955
7954
|
const refreshProductionData = await this.updatePowerAndEnergyData();
|
|
7956
7955
|
|
|
7956
|
+
// Battery
|
|
7957
|
+
const acbsData = this.feature.inventory.acbs.installed ? await this.updateAcbsData() : false;
|
|
7958
|
+
|
|
7957
7959
|
// Ensemble (FW >= 7.x.x)
|
|
7958
7960
|
const refreshEnsemble = firmware7xx && this.feature.inventory.esubs.supported ? await this.updateEnsembleInventory() : false;
|
|
7959
7961
|
const updateEnsembleStatus = refreshEnsemble && this.feature.ensemble.installed ? await this.updateEnsembleStatus() : false;
|