|
@@ -117,6 +117,63 @@ func (x InternalCodeDataPack) SendInternalCode(content []promodel.InternalCodeCo
|
|
|
return buf
|
|
|
}
|
|
|
|
|
|
+func (x InternalCodeData) AppendInternalCodeContent() *bytebufferpool.ByteBuffer {
|
|
|
+ buf := bytebufferpool.Get()
|
|
|
+ x.Separator = 0x2C
|
|
|
+ x.DisplayMode = 0x09
|
|
|
+ x.DisplaySpeed = 0x01
|
|
|
+ x.StopTime = 0xFF // 静止显示
|
|
|
+ x.PlayingPeriod = []byte{0x30, 0x31, 0x30, 0x31, 0x30, 0x31, 0x39, 0x39, 0x31, 0x32, 0x33, 0x31}
|
|
|
+ x.MaterialAttribLen = []byte{0x13, 0x00, 0x00, 0x00}
|
|
|
+ x.MaterialStartFlag = []byte{0x55, 0xAA}
|
|
|
+ x.ReservedWord1 = 0x00
|
|
|
+ x.TextRotation = 0x01
|
|
|
+ x.MaterialAttrib = 0x37
|
|
|
+ x.MaterialStorageMode = 0x32
|
|
|
+ x.MaterialUpdateMode = 0x31
|
|
|
+ x.TextStartSign = 0x31
|
|
|
+ x.ScreenColor = 0x32
|
|
|
+ x.PictureCodeMode = 0x31
|
|
|
+ x.ReservedWord2 = []byte{0x00, 0x00}
|
|
|
+ x.Width = []byte{0x0C, 0x00} //宽:96/8=12 也就是0x0C
|
|
|
+ x.Height = []byte{0x18, 0x00} //高:24 也就是0x18
|
|
|
+ x.ReservedWord3 = 0x00
|
|
|
+ x.ControlCode1 = []byte{0xFF, 0x00}
|
|
|
+ x.ControlCode3 = []byte{0x01, 0x00, 0x01, 0x00}
|
|
|
+ x.ReservedWord4 = []byte{0x00, 0x00}
|
|
|
+
|
|
|
+ buf.Write(x.MaterialId)
|
|
|
+ buf.WriteByte(x.Separator)
|
|
|
+ buf.WriteByte(x.DisplayMode)
|
|
|
+ buf.WriteByte(x.DisplaySpeed)
|
|
|
+ buf.WriteByte(x.StopTime)
|
|
|
+ buf.Write(x.PlayingPeriod)
|
|
|
+ buf.Write(x.MaterialAttribLen)
|
|
|
+ buf.Write(x.MaterialStartFlag)
|
|
|
+ buf.WriteByte(x.ReservedWord1)
|
|
|
+ buf.WriteByte(x.TextRotation)
|
|
|
+ buf.WriteByte(x.MaterialAttrib)
|
|
|
+ buf.WriteByte(x.MaterialStorageMode)
|
|
|
+ buf.WriteByte(x.MaterialUpdateMode)
|
|
|
+ buf.WriteByte(x.TextStartSign)
|
|
|
+ buf.WriteByte(x.ScreenColor)
|
|
|
+ buf.WriteByte(x.PictureCodeMode)
|
|
|
+ buf.Write(x.ReservedWord2)
|
|
|
+ buf.Write(x.Width)
|
|
|
+ buf.Write(x.Height)
|
|
|
+ buf.WriteByte(x.CharacterColor)
|
|
|
+ buf.WriteByte(x.TextSize)
|
|
|
+ buf.WriteByte(x.ReservedWord3)
|
|
|
+ buf.Write(x.MaterialContentLen)
|
|
|
+ buf.Write(x.MaterialContent)
|
|
|
+ buf.Write(x.ControlCode1)
|
|
|
+ buf.Write(x.ControlCode2)
|
|
|
+ buf.Write(x.ControlCode3)
|
|
|
+ buf.Write(x.ReservedWord4)
|
|
|
+ return buf
|
|
|
+}
|
|
|
+
|
|
|
+// 远程喊话
|
|
|
func (x VoiceBroadDataPack) VoiceBroad(broad string) *bytebufferpool.ByteBuffer {
|
|
|
buf := bytebufferpool.Get()
|
|
|
x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
|
|
@@ -156,7 +213,7 @@ func (x VoiceBroadData) AppendVoiceBroadContent() *bytebufferpool.ByteBuffer {
|
|
|
buf := bytebufferpool.Get()
|
|
|
x.FrameHeader = 0xFD
|
|
|
x.BroadWord = 0x01
|
|
|
- x.BroadEncodeFormat = []byte{0x00}//编码格式
|
|
|
+ x.BroadEncodeFormat = []byte{0x00} //编码格式
|
|
|
/*0x5B, 0x6D, 0x35, 0x32, 0x5D, //男2声
|
|
|
0x5B, 0x73, 0x35, 0x5D, //中语速
|
|
|
0x5B, 0x76, 0x31, 0x30, 0x5D*/ //高音量
|
|
@@ -171,59 +228,42 @@ func (x VoiceBroadData) AppendVoiceBroadContent() *bytebufferpool.ByteBuffer {
|
|
|
return buf
|
|
|
}
|
|
|
|
|
|
-func (x InternalCodeData) AppendInternalCodeContent() *bytebufferpool.ByteBuffer {
|
|
|
+// 调节亮度
|
|
|
+func (x SetBrightnessDataPack) SetBrightness(brightLevel byte) *bytebufferpool.ByteBuffer {
|
|
|
buf := bytebufferpool.Get()
|
|
|
- x.Separator = 0x2C
|
|
|
- x.DisplayMode = 0x09
|
|
|
- x.DisplaySpeed = 0x01
|
|
|
- x.StopTime = 0xFF // 静止显示
|
|
|
- x.PlayingPeriod = []byte{0x30, 0x31, 0x30, 0x31, 0x30, 0x31, 0x39, 0x39, 0x31, 0x32, 0x33, 0x31}
|
|
|
- x.MaterialAttribLen = []byte{0x13, 0x00, 0x00, 0x00}
|
|
|
- x.MaterialStartFlag = []byte{0x55, 0xAA}
|
|
|
- x.ReservedWord1 = 0x00
|
|
|
- x.TextRotation = 0x01
|
|
|
- x.MaterialAttrib = 0x37
|
|
|
- x.MaterialStorageMode = 0x32
|
|
|
- x.MaterialUpdateMode = 0x31
|
|
|
- x.TextStartSign = 0x31
|
|
|
- x.ScreenColor = 0x32
|
|
|
- x.PictureCodeMode = 0x31
|
|
|
- x.ReservedWord2 = []byte{0x00, 0x00}
|
|
|
- x.Width = []byte{0x0C, 0x00} //宽:96/8=12 也就是0x0C
|
|
|
- x.Height = []byte{0x18, 0x00} //高:24 也就是0x18
|
|
|
- x.ReservedWord3 = 0x00
|
|
|
- x.ControlCode1 = []byte{0xFF, 0x00}
|
|
|
- x.ControlCode3 = []byte{0x01, 0x00, 0x01, 0x00}
|
|
|
- x.ReservedWord4 = []byte{0x00, 0x00}
|
|
|
+ x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
|
|
|
+ x.Len = []byte{0x17, 0x00, 0x00, 0x00}
|
|
|
+ x.Type = 0x76
|
|
|
+ x.Id = []byte{0x00, 0x00, 0x00, 0x00}
|
|
|
+ x.DataLen = []byte{0x04, 0x00, 0x00, 0x00}
|
|
|
|
|
|
- buf.Write(x.MaterialId)
|
|
|
- buf.WriteByte(x.Separator)
|
|
|
- buf.WriteByte(x.DisplayMode)
|
|
|
- buf.WriteByte(x.DisplaySpeed)
|
|
|
- buf.WriteByte(x.StopTime)
|
|
|
- buf.Write(x.PlayingPeriod)
|
|
|
- buf.Write(x.MaterialAttribLen)
|
|
|
- buf.Write(x.MaterialStartFlag)
|
|
|
- buf.WriteByte(x.ReservedWord1)
|
|
|
- buf.WriteByte(x.TextRotation)
|
|
|
- buf.WriteByte(x.MaterialAttrib)
|
|
|
- buf.WriteByte(x.MaterialStorageMode)
|
|
|
- buf.WriteByte(x.MaterialUpdateMode)
|
|
|
- buf.WriteByte(x.TextStartSign)
|
|
|
- buf.WriteByte(x.ScreenColor)
|
|
|
- buf.WriteByte(x.PictureCodeMode)
|
|
|
- buf.Write(x.ReservedWord2)
|
|
|
- buf.Write(x.Width)
|
|
|
- buf.Write(x.Height)
|
|
|
- buf.WriteByte(x.CharacterColor)
|
|
|
- buf.WriteByte(x.TextSize)
|
|
|
- buf.WriteByte(x.ReservedWord3)
|
|
|
- buf.Write(x.MaterialContentLen)
|
|
|
- buf.Write(x.MaterialContent)
|
|
|
- buf.Write(x.ControlCode1)
|
|
|
- buf.Write(x.ControlCode2)
|
|
|
- buf.Write(x.ControlCode3)
|
|
|
- buf.Write(x.ReservedWord4)
|
|
|
+ data := SetBrightnessData{ControlPriority: 0x02,
|
|
|
+ ControlPriorityInverse: 0xFD,
|
|
|
+ BrightnessLevel: brightLevel,
|
|
|
+ BrightnessLevelInverse: ^brightLevel, //取反码
|
|
|
+ }
|
|
|
+ buffer := data.AppendSetBrightnessContent()
|
|
|
+
|
|
|
+ x.Data = buffer.Bytes()
|
|
|
+
|
|
|
+ x.End = []byte{0xFF, 0xFF}
|
|
|
+
|
|
|
+ buf.Write(x.Head)
|
|
|
+ buf.Write(x.Len)
|
|
|
+ buf.WriteByte(x.Type)
|
|
|
+ buf.Write(x.Id)
|
|
|
+ buf.Write(x.DataLen)
|
|
|
+ buf.Write(x.Data)
|
|
|
+ buf.Write(x.End)
|
|
|
+ return buf
|
|
|
+}
|
|
|
+
|
|
|
+func (x SetBrightnessData) AppendSetBrightnessContent() *bytebufferpool.ByteBuffer {
|
|
|
+ buf := bytebufferpool.Get()
|
|
|
+ buf.WriteByte(x.ControlPriority)
|
|
|
+ buf.WriteByte(x.ControlPriorityInverse)
|
|
|
+ buf.WriteByte(x.BrightnessLevel)
|
|
|
+ buf.WriteByte(x.BrightnessLevelInverse)
|
|
|
return buf
|
|
|
}
|
|
|
|