30 lines
514 B
Protocol Buffer
30 lines
514 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package meshtastic;
|
||
|
|
||
|
option csharp_namespace = "Meshtastic.Protobufs";
|
||
|
option go_package = "git.janky.solutions/finn/matrix-meshtastic-bridge-go/meshtastic/protobufs";
|
||
|
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;
|
||
|
}
|