1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
| syntax = "proto3";
|
| option java_package = "nodomain.freeyourgadget.gadgetbridge.proto";
| option java_outer_classname = "SMAQ2OSSProtos";
|
| message SetTime
| {
| int32 timestamp = 1;
| }
|
| message MusicControl
| {
| int32 music_event = 1;
| }
|
| message CallControl
| {
| int32 call_event = 1;
| }
|
| message Forecast
| {
| int32 condition = 1;
| int32 temperature_min = 2;
| int32 temperature_max = 3;
| }
|
| message SetWeather
| {
| int32 timestamp = 1;
| int32 condition = 2;
| int32 temperature = 3;
| int32 temperature_min = 4;
| int32 temperature_max = 5;
| int32 humidity = 6;
| repeated Forecast forecasts = 7;
| }
|
| message MessageNotification
| {
| uint32 timestamp = 1;
| int32 type = 2;
| string sender = 3;
| string subject = 4;
| string body = 5;
| }
|
| message CallNotification
| {
| string number = 1;
| string name = 2;
| int32 command = 3;
| }
|
| message MusicInfo
| {
| string artist = 1;
| string album = 2;
| string track = 3;
| }
|
|