polar-prost 0.1.0

Protobuf bindings to interact with Polar watches
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto2";
package data;

import "types.proto";

message PbMapLocation {
	required double latitude = 1 ;
	required double longitude = 2 ;
}

message PbMapInformation {
	required data.PbMapLocation centre_point = 1 ;
	optional types.PbSystemDateTime data_timestamp = 2 ;
	optional bool updated = 3 [default = false];
}