Skip to content

Commit 9faad63

Browse files
committed
### 0.7.2: Maintenance Release
**Enhancements** - Reading and writing of inverter configuration settings - max - Time - PV active power rate
1 parent b45ed5a commit 9faad63

6 files changed

+403
-1105
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ node_modules/*
44
/test2.js
55
/test_plants.json
66
/testSharePlant.json
7-
/update.cmd

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### 0.7.2: Maintenance Release
2+
3+
**Enhancements**
4+
5+
- Reading and writing of inverter configuration settings
6+
- max
7+
- Time
8+
- PV active power rate
9+
110
### 0.7.1: Maintenance Release
211

312
**Enhancements**

lib/growatttype.js

+18
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,24 @@ module.exports = {
3636
snParam: 'maxSn',
3737
getTotalData: '/panel/max/getMAXTotalData',
3838
getHistory: '/device/getMAXHistory',
39+
readParam: 'readMaxParam',
40+
writeParam: 'maxSet',
41+
comInverter: {
42+
time: {
43+
name: 'Time',
44+
type: 'pf_sys_year',
45+
paramId: 'pf_sys_time_mutli',
46+
parseRet: PARSERET.parseRetDate,
47+
param: { param1: { name: 'Time', type: 'DATETIME' } },
48+
},
49+
pvActivePRate: {
50+
name: 'PV active power rate',
51+
type: 'pv_active_p_rate',
52+
paramId: 'pv_active_p_rate',
53+
parseRet: PARSERET.parseRetNum,
54+
param: { param1: { name: 'Active power rate', type: 'INUM_0_100', unit: '%' }, param2: { name: 'Store', type: 'BOOL', def: false } },
55+
},
56+
},
3957
},
4058
[MIX]: {
4159
snParam: 'mixSn',

0 commit comments

Comments
 (0)