radar_test.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package main
  2. import (
  3. "encoding/hex"
  4. "fmt"
  5. "testing"
  6. )
  7. // buf.Write([]byte{0xFE, 0x5C, 0x4B, 0x89, 0x2A, 0x00, 0x00, 0x00})
  8. // fmt.Println("buf", buf.Bytes())
  9. //
  10. // fmt.Println("转换", hex.EncodeToString(buf.Bytes()))
  11. //
  12. // reply, _ := hex.DecodeString(
  13. // "fe5c4b892a000000")
  14. // fmt.Println("reply", reply)
  15. // encodeToGBK 将输入字符串编码为 GBK 字节切片
  16. func Test_verify(t *testing.T) {
  17. //pack := protocol.InternalCodeDataPack{}
  18. //
  19. //contents := []promodel.InternalCodeContent{}
  20. //
  21. //c1 := promodel.InternalCodeContent{
  22. // Text: "车牌:粤AB31Y9",
  23. // Color: 0x01,
  24. // Size: 0x11,
  25. //}
  26. //c2 := promodel.InternalCodeContent{
  27. // Text: "金额:176.8元",
  28. // Color: 0x01,
  29. // Size: 0x11,
  30. //}
  31. //contents = append(contents, c1, c2)
  32. //code := pack.SendInternalCode(contents)
  33. //toString := hex.EncodeToString(code.Bytes())
  34. //fmt.Println("======", toString)
  35. //rotate := protocol.Rotate([]byte{0x00, 0x06, 0x00, 0x17})
  36. //fmt.Println("rotate", rotate)
  37. //远程喊话
  38. //no := protocol.GetBytesArrNo(30, 2)
  39. //fmt.Println("no", no)
  40. //pack := protocol.VoiceBroadDataPack{}
  41. //broad := pack.VoiceBroad("欢迎光临")
  42. //fmt.Println("======", hex.EncodeToString(broad.Bytes()))
  43. inverse, _ := GetInverse(0x31)
  44. toString := hex.EncodeToString([]byte{inverse})
  45. fmt.Println("====", toString)
  46. }
  47. func GetInverse(byteValue byte) (byte, error) {
  48. // 确保输入是 8 位字节
  49. //if byteValue < 0 || byteValue > 255 {
  50. // return 0, errors.New("input must be an 8-bit byte (0-255)")
  51. //}
  52. // 计算反码
  53. return ^byteValue, nil // 取反
  54. }