添加扣车按钮&无人折返按钮

This commit is contained in:
fan 2024-05-27 20:43:53 +08:00
parent f232ff605d
commit 16d15c8515

View File

@ -57,6 +57,8 @@ message RtssGraphicStorage {
repeated GarageDoor floodGates = 47; //
//repeated GarageDoorBox garageDoorBoxes = 48; //Psl开启按钮
LianSuoData lianSuoData = 49; //
repeated HoldButton holdButtons = 50; //
repeated UnattengedButton unattengedButtons = 51; //
}
message Canvas {
@ -535,7 +537,7 @@ message SpksSwitch {
// int32 refStand = 5; //
//repeated string oldrefSections = 6; // id
//string oldrefStand = 7; //
repeated uint32 refSections = 8; // id
// repeated uint32 refSections = 8; // id
uint32 refStand = 9; //
}
@ -740,3 +742,17 @@ message LianSuoData {
repeated LianSuoIndexData garageDoors = 8;
repeated LianSuoIndexData carWashing = 9;
}
//
message UnattengedButton {
CommonInfo common = 1;
string code = 2;
bool flip = 3; //
uint32 refStand = 4; //
}
//
message HoldButton {
CommonInfo common = 1;
string code = 2;
bool flip = 3; //
uint32 refStand = 4; //
}