diff --git a/protos/ibpGraphics.proto b/protos/ibpGraphics.proto index 486cf5a..ec444f2 100644 --- a/protos/ibpGraphics.proto +++ b/protos/ibpGraphics.proto @@ -13,6 +13,7 @@ message IBPGraphicStorage { // UniqueIdType UniqueIdPrefix = 7; repeated IbpRelatedDevice ibpRelatedDevices = 8; repeated IbpLight ibpLights = 9; + repeated IbpStationText ibpStationTexts = 10; } message IBPButton { @@ -73,3 +74,21 @@ message IbpRelatedDevice { repeated graphicData.DeviceCombinationtype combinationtypes = 2; //组合类型 // graphicData.RelatedRef.DeviceType deviceType = 3; //设备类型 } + +message IbpStationText { + enum IbpStationTextType { + CURRENT = 0; + UP = 1; + DOWN = 2; + } + enum IbpStationTextAlign { + LEFT = 0; + RIGHT = 1; + CENTER = 2; + } + graphicData.CommonInfo common = 1; + IbpStationTextType type = 2; + string color = 4; + int32 fontSize = 5; + IbpStationTextAlign align = 6; +}