Add ping toast

This commit is contained in:
Mashintime 2023-12-09 11:34:25 -05:00
parent bdc21d1c53
commit 46eef7a3b5

View file

@ -211,12 +211,21 @@ export function eventDispatcher(data) {
5000, 5000,
); );
return; return;
case "QRV": case "QRV":
//Qrv received
displayToast(
"success",
"bi-person-raised-hand",
"QRV from " + data["dxcallsign"],
5000,
);
return;
case "PING":
//Qrv received //Qrv received
displayToast( displayToast(
"success", "success",
"bi-person-raised-hand", "bi-arrow-right-short",
"QRV from " + data["dxcallsign"], "Ping request from " + data["dxcallsign"],
5000, 5000,
); );
return; return;