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
16
17
syntax = "proto2";
package data;

import "types.proto";

message PbAceSportProfileSettings {
	optional data.PbAceSportProfileSettings.PbHeartTouch heart_touch = 1 ;
	optional bool auto_start = 4 ;
	optional types.PbStrideSensorCalibSettings stride_sensor_calib_settings = 6 ;

	enum PbHeartTouch {
		HEART_TOUCH_OFF = 1;
		HEART_TOUCH_ACTIVATE_BACKLIGHT = 2;
		HEART_TOUCH_SHOW_PREVIOUS_LAP = 3;
		HEART_TOUCH_SHOW_TIME_OF_DAY = 4;
	}
}