Skip to content

Commit

Permalink
0.8.96
Browse files Browse the repository at this point in the history
* fix precision of power limit in `/live` #1517
* fix translation of `Werte ausgeben` in `settings` #1507
* add grid profile #1518
  • Loading branch information
lumapu committed Mar 21, 2024
1 parent 4fc61dc commit a0e32bb
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Development Changes

## 0.8.96 - 2024-03-21
* fix precision of power limit in `/live` #1517
* fix translation of `Werte ausgeben` in `settings` #1507
* add grid profile #1518

## 0.8.95 - 2024-03-17
* fix NTP issues #1440 #1497 #1499

Expand Down
2 changes: 1 addition & 1 deletion src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 8
#define VERSION_PATCH 95
#define VERSION_PATCH 96

//-------------------------------------
typedef struct {
Expand Down
102 changes: 102 additions & 0 deletions src/web/html/grid_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
{"0x0908": "France_VFR2014"},
{"0x0a00": "DE NF_EN_50549-1:2019"},
{"0x0c00": "AT_TOR_Erzeuger_default"},
{"0x0c04": "AT_TOR_Erzeuger_default"},
{"0x0d00": "FR_VFR2019"},
{"0x0d04": "NF_EN_50549-1:2019"},
{"0x1000": "ES_RD1699"},
Expand Down Expand Up @@ -252,6 +253,78 @@
}
]
},
{
"0x000b": [
{
"name": "Nominal Voltage",
"div": 10,
"def": 230,
"unit": "V"
},
{
"name": "Low Voltage 1",
"div": 10,
"min": 170,
"max": 184,
"def": 184,
"unit": "V"
},
{
"name": "LV1 Maximum Trip Time",
"div": 10,
"def": 1.5,
"unit": "s"
},
{
"name": "High Voltage 1",
"div": 10,
"min": 253,
"max": 270,
"def": 255.3,
"unit": "V"
},
{
"name": "HV1 Maximum Trip Time",
"div": 10,
"def": 0.1,
"unit": "s"
},
{
"name": "Low Voltage 2",
"div": 10,
"def": 57.5,
"unit": "V"
},
{
"name": "LV2 Maximum Trip Time",
"div": 100,
"def": 0.5,
"unit": "s"
},
{
"name": "High Voltage 2",
"div": 10,
"min": 264.5,
"max": 275,
"def": 264.5,
"unit": "V"
},
{
"name": "HV2 Maximum Trip Time",
"div": 100,
"def": 0.08,
"unit": "s"
},
{
"name": "10mins Average High Voltage",
"div": 10,
"min": 245,
"max": 255.3,
"def": 255.3,
"unit": "V"
}
]
},
{
"0x000c": [
{
Expand Down Expand Up @@ -805,6 +878,35 @@
}
]
},
{
"0x6004": [
{
"name": "VW Function Activated",
"div": 1,
"min": 0,
"max": 1,
"def": 1
},
{
"name": "Start of Voltage Watt Droop",
"div": 10,
"def": 253,
"unit": "V"
},
{
"name": "End of Voltage Watt Droop",
"div": 10,
"def": 257.6,
"unit": "V"
},
{
"name": "VW Droop Slope",
"div": 100,
"def": 21.74,
"unit": "Pn%/V"
}
]
},
{
"0x7000": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/web/html/visualization.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
if(65535 != obj.power_limit_read) {
pwrLimit = obj.power_limit_read + " %";
if(0 != obj.max_pwr)
pwrLimit += ", " + (obj.max_pwr * obj.power_limit_read / 100) + " W";
pwrLimit += ", " + (obj.max_pwr * obj.power_limit_read / 100).toFixed(1) + " W";
}

var maxAcPwr = toIsoDateStr(new Date(obj.ts_max_ac_pwr * 1000));
Expand Down
2 changes: 1 addition & 1 deletion src/web/lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
{
"token": "LOG_PRINT_INVERTER_DATA",
"en": "print inverter data",
"de": "Livedaten ausgeben"
"de": "Inverterwerte ausgeben"
},
{
"token": "LOG_SERIAL_DEBUG",
Expand Down

0 comments on commit a0e32bb

Please sign in to comment.