You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
798 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HBLDevice.ICChip
  7. {
  8. /// <summary>
  9. /// 命令
  10. /// </summary>
  11. public enum IC_CMD:byte
  12. {
  13. /// <summary>
  14. /// 心跳
  15. /// </summary>
  16. HEART_BEAT=0x00,
  17. /// <summary>
  18. /// 下杯(带上碗参数)
  19. /// </summary>
  20. TAKE_CUP=0x01,
  21. /// <summary>
  22. /// 打开舵机(带上舵机参数)
  23. /// </summary>
  24. OPEN_SE=0x02,
  25. /// <summary>
  26. /// 关闭舵机(带上舵机参数)
  27. /// </summary>
  28. CLOSE_SE = 0x03,
  29. /// <summary>
  30. /// 使能冰淇淋转子(带上开关参数)
  31. /// </summary>
  32. ROTOR=0x04,
  33. }
  34. }