Skip to content

Commit

Permalink
0.7.32
Browse files Browse the repository at this point in the history
* fix colors of live view #1091
  • Loading branch information
lumapu committed Aug 14, 2023
1 parent 4831945 commit 8544e86
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Development Changes

## 0.7.32 - 2023-08-14
* fix colors of live view #1091

## 0.7.31 - 2023-08-13
* fixed docu #1085
* changed active power limit MqTT messages to QOS2 #1072
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 7
#define VERSION_PATCH 31
#define VERSION_PATCH 32

//-------------------------------------
typedef struct {
Expand Down
4 changes: 2 additions & 2 deletions src/hm/hmRadio.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ class HmRadio {
mTxBuf[10] = cmd; // cid
mTxBuf[11] = 0x00;
CP_U32_LittleEndian(&mTxBuf[12], ts);
if (cmd == AlarmData ) { //cmd == RealTimeRunData_Debug ||
/*if (cmd == AlarmData ) { //cmd == RealTimeRunData_Debug ||
mTxBuf[18] = (alarmMesId >> 8) & 0xff;
mTxBuf[19] = (alarmMesId ) & 0xff;
}
}*/
sendPacket(invId, 24, isRetransmit);
}

Expand Down
4 changes: 2 additions & 2 deletions src/web/html/visualization.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@
}

function ch(status, name, vals) {
var clh = (0 == status) ? "iv-h-dis" : "iv-h";
var clbg = (0 == status) ? "iv-bg-dis" : "iv-bg";
var clh = (0 == status) ? "iv-h-dis" : "ch-h";
var clbg = (0 == status) ? "iv-bg-dis" : "ch-bg";
return ml("div", {class: "col-6 col-md-3 mt-2"}, [
ml("div", {class: "p-2 a-c " + clh}, name),
ml("div", {class: "p-2 " + clbg}, [
Expand Down

0 comments on commit 8544e86

Please sign in to comment.