* merged PR #1234
* added new alarm codes
* removed serial interval, was not in use anymore
This commit is contained in:
lumapu 2023-11-19 01:38:54 +01:00
parent b57e463b92
commit 49ef94cb7a
9 changed files with 82 additions and 48 deletions

View file

@ -142,7 +142,7 @@ void app::regularTickers(void) {
if (mConfig->plugin.display.type != 0)
everySec(std::bind(&DisplayType::tickerSecond, &mDisplay), "disp");
#endif
every(std::bind(&PubSerialType::tick, &mPubSerial), mConfig->serial.interval, "uart");
every(std::bind(&PubSerialType::tick, &mPubSerial), 5, "uart");
#if !defined(ETHERNET)
//everySec([this]() { mImprov.tickSerial(); }, "impro");
#endif