radar_test.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package main
  2. import (
  3. "encoding/hex"
  4. "fmt"
  5. "server/protocol"
  6. "testing"
  7. )
  8. // buf.Write([]byte{0xFE, 0x5C, 0x4B, 0x89, 0x2A, 0x00, 0x00, 0x00})
  9. // fmt.Println("buf", buf.Bytes())
  10. //
  11. // fmt.Println("转换", hex.EncodeToString(buf.Bytes()))
  12. //
  13. // reply, _ := hex.DecodeString(
  14. // "fe5c4b892a000000")
  15. // fmt.Println("reply", reply)
  16. // encodeToGBK 将输入字符串编码为 GBK 字节切片
  17. func Test_verify(t *testing.T) {
  18. //pack := protocol.InternalCodeDataPack{}
  19. //
  20. //contents := []promodel.InternalCodeContent{}
  21. //
  22. //c1 := promodel.InternalCodeContent{
  23. // Text: "车牌:粤AB31Y9",
  24. // Color: 0x01,
  25. // Size: 0x11,
  26. //}
  27. //c2 := promodel.InternalCodeContent{
  28. // Text: "金额:176.8元",
  29. // Color: 0x01,
  30. // Size: 0x11,
  31. //}
  32. //contents = append(contents, c1, c2)
  33. //code := pack.SendInternalCode(contents)
  34. //toString := hex.EncodeToString(code.Bytes())
  35. //fmt.Println("======", toString)
  36. //rotate := protocol.Rotate([]byte{0x00, 0x06, 0x00, 0x17})
  37. //fmt.Println("rotate", rotate)
  38. //远程喊话
  39. no := protocol.GetBytesArrNo(30, 2)
  40. fmt.Println("no", no)
  41. pack := protocol.VoiceBroadDataPack{}
  42. broad := pack.VoiceBroad("语音测试abc123")
  43. fmt.Println("======", hex.EncodeToString(broad.Bytes()))
  44. }