-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
syntax = "proto3"; | ||
|
||
package meshtastic; | ||
|
||
option csharp_namespace = "Meshtastic.Protobufs"; | ||
option go_package = "github.com/meshtastic/go/generated"; | ||
option java_outer_classname = "PaxcountProtos"; | ||
option java_package = "com.geeksville.mesh"; | ||
option swift_prefix = ""; | ||
|
||
/* | ||
* TODO: REPLACE | ||
*/ | ||
message Paxcount { | ||
/* | ||
* seen Wifi devices | ||
*/ | ||
uint32 wifi = 1; | ||
|
||
/* | ||
* Seen BLE devices | ||
*/ | ||
uint32 ble = 2; | ||
|
||
/* | ||
* Uptime in seconds | ||
*/ | ||
uint32 uptime = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters