mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-17 02:34:47 +01:00
minor update to display message
This commit is contained in:
parent
b3e05fcc78
commit
a2ab91b5a0
|
|
@ -260,11 +260,13 @@ void checkReceivedPacket(String packet) {
|
|||
deleteNotHeardStation();
|
||||
updateLastHeardStation(Sender);
|
||||
if (aprsPacket.indexOf("::") >= 10) {
|
||||
show_display("LoRa iGate: " + Config.callsign, secondLine, "Callsign = " + Sender, "Type --> MESSAGE", 1000);
|
||||
show_display(firstLine, secondLine, "Callsign = " + Sender, "Type --> MESSAGE", 1000);
|
||||
} else if (aprsPacket.indexOf(":>") >= 10) {
|
||||
show_display("LoRa iGate: " + Config.callsign, secondLine, "Callsign = " + Sender, "Type --> NEW STATUS", 1000);
|
||||
show_display(firstLine, secondLine, "Callsign = " + Sender, "Type --> NEW STATUS", 1000);
|
||||
} else if (aprsPacket.indexOf(":!") >= 10) {
|
||||
show_display(firstLine, secondLine, "Callsign = " + Sender, "Type --> GPS BEACON", 1000);
|
||||
} else {
|
||||
show_display("LoRa iGate: " + Config.callsign, secondLine, "Callsign = " + Sender, "Type --> GPS BEACON", 1000);
|
||||
show_display(firstLine, secondLine, "Callsign = " + Sender, "Type --> ??????????", 1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue