made it possible to establish connection when idle

This commit is contained in:
Jay Robson 2024-08-26 13:34:17 +10:00
parent 6ed0f3ae4b
commit c2d2d259c8
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ void loop() {
indicator::update(); indicator::update();
} }
} else { } else {
data::check(); if(data::check()) {
scheduler::do_next();
}
} }
timing::update(); timing::update();