电子药箱通讯服务端
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.

ElectronicMedicineKitFunctionTypes.cs 427B

12345678910111213141516
  1. namespace Rdh.SocketServer.Client.Models
  2. {
  3. public enum ElectronicMedicineKitFunctionTypes
  4. {
  5. 确认信息 = 0xAA,
  6. 手术信息下载 = 0xAB,
  7. 开启手术=0xAC,
  8. //上传用药信息=0xAD , UnUsed
  9. 机器人呼叫 = 0xBA,
  10. 定位信息 = 0xBB,
  11. 手术结束 = 0xBF,
  12. 药箱归还 = 0xCA,
  13. 药品信息查询 = 0xDB,
  14. 补药结束 = 0xDF
  15. }
  16. }