1syntax = "proto3";
2
3package nugget.app.protoapi;
4
5message SOCinformation {
6  string git_version = 1;
7  string complier_version = 2;
8  string compiled_by = 3;
9  uint32 chip_version = 4;
10  Temperature junction_temperature = 5;
11}
12
13message Temperature {
14  uint32 degrees_celsius = 1;
15}
16