Skip to content

Commit

Permalink
**Enhancements**
Browse files Browse the repository at this point in the history
- Added Inverter On Off for TLX und TLXH
  • Loading branch information
PLCHome committed Oct 24, 2024
1 parent 9aa46ee commit 56163b0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
**Enhancements**

- Added time slots for TLXH
- Added Inverter On Off for TLX und TLXH


### 0.7.5: Maintenance Release

Expand Down
14 changes: 14 additions & 0 deletions lib/growatttype.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,13 @@ module.exports = {
parseRet: PARSERET.parseRetNum,
param: { param1: { name: 'Active power rate', type: 'INUM_0_100', unit: '%' }, param2: { name: 'Store', type: 'BOOL', def: false } },
},
pvOnOff: {
name: 'Inverter On/Off',
type: 'tlx_on_off',
paramId: 'tlx_on_off',
parseRet: PARSERET.parseRetBoot,
param: { param1: { name: 'Inverter On/Off', type: 'INUM_0_1', values: { 1: 'Boot', 0: 'Shut down' } } },
},
},
},
[TLXH]: {
Expand Down Expand Up @@ -350,6 +357,13 @@ module.exports = {
param6: { name: 'Enabled', type: 'BOOL' },
},
},
pvOnOff: {
name: 'Inverter On/Off',
type: 'tlx_on_off',
paramId: 'tlx_on_off',
parseRet: PARSERET.parseRetBoot,
param: { param1: { name: 'Inverter On/Off', type: 'INUM_0_1', values: { 1: 'Boot', 0: 'Shut down' } } },
},
},
},
[STORAGE]: {
Expand Down

0 comments on commit 56163b0

Please sign in to comment.