* new NRF24 lib (1.4.2 -> 1.4.5)

* add build info on index.html (like OpenDTU)
* add Discord Link to index.html
This commit is contained in:
lumapu 2022-08-08 22:06:33 +02:00
parent 3caa3392ab
commit 155f9e3f41
8 changed files with 44 additions and 8 deletions

View file

@ -510,6 +510,7 @@ void app::showIndex(void) {
html.replace(F("{VERSION}"), mVersion);
html.replace(F("{TS}"), String(mSendInterval) + " ");
html.replace(F("{JS_TS}"), String(mSendInterval * 1000));
html.replace(F("{BUILD}"), String(AUTO_GIT_HASH));
mWeb->send(200, "text/html", html);
}
@ -1113,4 +1114,4 @@ const char* app::getFieldStateClass(uint8_t fieldId) {
break;
}
return (pos >= DEVICE_CLS_ASSIGN_LIST_LEN) ? NULL : stateClasses[deviceFieldAssignment[pos].stateClsId];
}
}