16 lines
399 B
Protocol Buffer
Executable File
16 lines
399 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
/*
|
|
This container message is send from Hi To Lo and may contain any allowed message in that direction.
|
|
*/
|
|
message HiToLo {
|
|
oneof payload {
|
|
uint32 time_stamp = 1;
|
|
bool connector_lock = 2; // false: unlock, true: lock
|
|
uint32 max_charging_current = 3;
|
|
bool allow_power_on = 4;
|
|
bool reset = 5;
|
|
uint32 grid_current = 6;
|
|
uint32 max_grid_current = 7;
|
|
}
|
|
} |