Skip to content

Commit

Permalink
### 0.7.2: Maintenance Release
Browse files Browse the repository at this point in the history
**Enhancements**

- Reading and writing of inverter configuration settings
  - max
    - Time
    - PV active power rate
  • Loading branch information
PLCHome committed Jan 27, 2024
1 parent b45ed5a commit 9faad63
Show file tree
Hide file tree
Showing 6 changed files with 403 additions and 1,105 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ node_modules/*
/test2.js
/test_plants.json
/testSharePlant.json
/update.cmd
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 0.7.2: Maintenance Release

**Enhancements**

- Reading and writing of inverter configuration settings
- max
- Time
- PV active power rate

### 0.7.1: Maintenance Release

**Enhancements**
Expand Down
18 changes: 18 additions & 0 deletions lib/growatttype.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@ module.exports = {
snParam: 'maxSn',
getTotalData: '/panel/max/getMAXTotalData',
getHistory: '/device/getMAXHistory',
readParam: 'readMaxParam',
writeParam: 'maxSet',
comInverter: {
time: {
name: 'Time',
type: 'pf_sys_year',
paramId: 'pf_sys_time_mutli',
parseRet: PARSERET.parseRetDate,
param: { param1: { name: 'Time', type: 'DATETIME' } },
},
pvActivePRate: {
name: 'PV active power rate',
type: 'pv_active_p_rate',
paramId: 'pv_active_p_rate',
parseRet: PARSERET.parseRetNum,
param: { param1: { name: 'Active power rate', type: 'INUM_0_100', unit: '%' }, param2: { name: 'Store', type: 'BOOL', def: false } },
},
},
},
[MIX]: {
snParam: 'mixSn',
Expand Down
Loading

0 comments on commit 9faad63

Please sign in to comment.