Added client-hidden and lost-and-found roles

pull/409/head
Ben Meadors 2023-12-04 20:38:53 -06:00
rodzic 9148427a3b
commit bf2f5c2fa5
1 zmienionych plików z 17 dodań i 0 usunięć

Wyświetl plik

@ -72,6 +72,23 @@ message Config {
* from the Meshtastic ATAK plugin -> IMeshService -> Node
*/
TAK = 7;
/*
* Client Hidden device role
* Used for nodes that "only speak when spoken to"
* Turns all of the routine broadcasts but allows for ad-hoc communication
* Still rebroadcasts, but with local only rebroadcast mode (known meshes only)
* Can be used for clandestine operation or to dramatically reduce airtime / power consumption
*/
CLIENT_HIDDEN = 8;
/*
* Lost and Found device role
* Used to automatically send a text message to the mesh
* with the current position of the device on a frequent interval:
* "I'm lost! Position: lat / long"
*/
LOST_AND_FOUND = 9;
}
/*