test Beta

This commit is contained in:
richonguzman 2023-06-12 01:31:18 -04:00
parent 3858d39e8a
commit 72204cb6fd
9 changed files with 38 additions and 20 deletions

View file

@ -124,7 +124,7 @@ void processLoRaPacket(String packet) {
espClient.write(aprsPacket.c_str());
Serial.println(" ---> Uploaded to APRS-IS");
STATION_Utils::updateLastHeard(Sender);
utils::typeOfPacket(aprsPacket);
Utils::typeOfPacket(aprsPacket);
show_display(firstLine, secondLine, thirdLine, fourthLine, 0);
}
}
@ -175,7 +175,7 @@ void processAPRSISPacket(String packet) {
LoRa_Utils::sendNewPacket("APRS", LoRa_Utils::generatePacket(packet));
display_toggle(true);
lastScreenOn = millis();
utils::typeOfPacket(packet);
Utils::typeOfPacket(packet);
show_display(firstLine, secondLine, Sender + " -> " + Addressee, fourthLine, 0);
}
}