model.go 421 B

123456789101112131415161718
  1. package switchRelay
  2. type DataPack struct {
  3. Address string //地址码
  4. Function byte //功能码
  5. Way int //操作路数
  6. Command int //控制指令
  7. Crc uint16 //Crc校验码
  8. }
  9. type MultiLoopDataPack struct {
  10. Address string //地址码
  11. Function byte //功能码
  12. TurnOff int //开关指令
  13. State []int //回路状态
  14. Command []byte //控制指令
  15. Crc uint16 //Crc校验码
  16. }