homebridge-enphase-envoy 10.3.0-beta.5 → 10.3.0-beta.6
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 +1 -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.3.0-beta.
|
|
5
|
+
"version": "10.3.0-beta.6",
|
|
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
|
@@ -2694,7 +2694,7 @@ class EnvoyDevice extends EventEmitter {
|
|
|
2694
2694
|
{ type: Characteristic.AdminState, label: 'admin state', value: collar.adminStateStr },
|
|
2695
2695
|
{ type: Characteristic.Status, label: 'status', value: collar.deviceStatus },
|
|
2696
2696
|
{ type: Characteristic.MidState, label: 'mid state', value: collar.midState },
|
|
2697
|
-
{ type: Characteristic.GridState, label: '
|
|
2697
|
+
{ type: Characteristic.GridState, label: 'grid state', value: collar.gridState },
|
|
2698
2698
|
{ type: Characteristic.Communicating, label: 'communicating', value: collar.communicating, postfix: collar.communicating ? 'Yes' : 'No' },
|
|
2699
2699
|
{ type: Characteristic.Temperature, label: 'temperature', value: collar.temperature, unit: '°C' },
|
|
2700
2700
|
{ type: Characteristic.ReadingTime, label: 'reading time', value: collar.readingTime }
|