Adicionar primeiro

This commit is contained in:
2025-06-06 21:17:25 +01:00
parent c188084ba4
commit 282e7f517b
841 changed files with 199592 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}