mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-22 21:36:11 +02:00
0.7.37
* fix alarm time on WebGui #1099 * added RSSI info for HMS and HMT inverters (MqTT + REST API)
This commit is contained in:
parent
ba218edbdb
commit
4d19e2dde4
8 changed files with 32 additions and 19 deletions
|
@ -151,6 +151,7 @@ class Inverter {
|
|||
std::array<alarm_t, 10> lastAlarm; // holds last 10 alarms
|
||||
uint8_t alarmNxtWrPos; // indicates the position in array (rolling buffer)
|
||||
uint16_t alarmCnt; // counts the total number of occured alarms
|
||||
int8_t rssi; // HMS and HMT inverters only
|
||||
|
||||
|
||||
static uint32_t *timestamp; // system timestamp
|
||||
|
@ -171,6 +172,7 @@ class Inverter {
|
|||
status = InverterStatus::OFF;
|
||||
alarmNxtWrPos = 0;
|
||||
alarmCnt = 0;
|
||||
rssi = -127;
|
||||
}
|
||||
|
||||
~Inverter() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue