This commit is contained in:
Wessel 2026-04-20 10:53:50 +02:00 committed by GitHub
commit f9d43e64ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 128 additions and 9 deletions

View file

@ -223,6 +223,7 @@ void setup() {
}
void loop() {
board.loop();
the_mesh.loop();
sensors.loop();
#ifdef DISPLAY_CLASS

View file

@ -119,6 +119,7 @@ void setup() {
}
void loop() {
board.loop();
modem->loop();
if (!modem->isActuallyTransmitting()) {

View file

@ -106,6 +106,8 @@ void setup() {
}
void loop() {
board.loop();
int len = strlen(command);
while (Serial.available() && len < sizeof(command)-1) {
char c = Serial.read();

View file

@ -83,6 +83,8 @@ void setup() {
}
void loop() {
board.loop();
int len = strlen(command);
while (Serial.available() && len < sizeof(command)-1) {
char c = Serial.read();

View file

@ -589,6 +589,7 @@ void setup() {
}
void loop() {
board.loop();
the_mesh.loop();
rtc_clock.tick();
}

View file

@ -117,6 +117,8 @@ void setup() {
}
void loop() {
board.loop();
int len = strlen(command);
while (Serial.available() && len < sizeof(command)-1) {
char c = Serial.read();