终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

27 rader
556 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.LebaiRobot
  7. {
  8. public enum ELebaiRModel : int
  9. {
  10. 硬件通讯故障 = 0,
  11. 已急停 = 1,
  12. 初始化中 = 2,
  13. 已关机 = 3,
  14. 已开机 = 4,
  15. 空闲状态 = 5,
  16. 暂停中 = 6,
  17. 运行中 = 7,
  18. 固件更新中 = 8,
  19. 启动中 = 9,
  20. 停止中 = 10,
  21. 示教中 = 11,
  22. 普通停止 = 12,
  23. 微调中 = 13
  24. }
  25. }