mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-18 19:24:49 +01:00
battery info in OLED update
This commit is contained in:
parent
67fed9b02b
commit
deeb592084
|
|
@ -115,6 +115,9 @@ void checkBeaconInterval() {
|
|||
}
|
||||
sixthLine = "";
|
||||
show_display(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, "SENDING iGate BEACON", 1000);
|
||||
if (Config.sendBatteryVoltage) {
|
||||
sixthLine = " " + beaconPacket;
|
||||
}
|
||||
seventhLine = " listening...";
|
||||
espClient.write((beaconPacket + "\n").c_str());
|
||||
show_display(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, seventhLine, 0);
|
||||
|
|
@ -130,6 +133,9 @@ void checkBeaconInterval() {
|
|||
fifthLine = "";
|
||||
sixthLine = "";
|
||||
show_display(firstLine, secondLine, thirdLine, fourthLine, fifthLine, sixthLine, "SENDING iGate BEACON", 0);
|
||||
if (Config.sendBatteryVoltage) {
|
||||
sixthLine = " " + beaconPacket;
|
||||
}
|
||||
seventhLine = " listening...";
|
||||
if (stationMode == 4) {
|
||||
LoRa_Utils::changeFreqTx();
|
||||
|
|
|
|||
Loading…
Reference in a new issue