Skip to content

Commit 56163b0

Browse files
committed
**Enhancements**
- Added Inverter On Off for TLX und TLXH
1 parent 9aa46ee commit 56163b0

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
**Enhancements**
44

55
- Added time slots for TLXH
6+
- Added Inverter On Off for TLX und TLXH
7+
68

79
### 0.7.5: Maintenance Release
810

lib/growatttype.js

+14
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,13 @@ module.exports = {
200200
parseRet: PARSERET.parseRetNum,
201201
param: { param1: { name: 'Active power rate', type: 'INUM_0_100', unit: '%' }, param2: { name: 'Store', type: 'BOOL', def: false } },
202202
},
203+
pvOnOff: {
204+
name: 'Inverter On/Off',
205+
type: 'tlx_on_off',
206+
paramId: 'tlx_on_off',
207+
parseRet: PARSERET.parseRetBoot,
208+
param: { param1: { name: 'Inverter On/Off', type: 'INUM_0_1', values: { 1: 'Boot', 0: 'Shut down' } } },
209+
},
203210
},
204211
},
205212
[TLXH]: {
@@ -350,6 +357,13 @@ module.exports = {
350357
param6: { name: 'Enabled', type: 'BOOL' },
351358
},
352359
},
360+
pvOnOff: {
361+
name: 'Inverter On/Off',
362+
type: 'tlx_on_off',
363+
paramId: 'tlx_on_off',
364+
parseRet: PARSERET.parseRetBoot,
365+
param: { param1: { name: 'Inverter On/Off', type: 'INUM_0_1', values: { 1: 'Boot', 0: 'Shut down' } } },
366+
},
353367
},
354368
},
355369
[STORAGE]: {

0 commit comments

Comments
 (0)