IceCreamDeviceConstants.java 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.bgy.autosale;
  2. /**
  3. * Created by cjx on 2021-01-07
  4. * 说明:
  5. */
  6. public class IceCreamDeviceConstants {
  7. // 控制机台指令
  8. public static final int ORDER_RESET = 1; // 复位 //复位开机
  9. public static final int ORDER_THAW = 2; // 解冻
  10. public static final int ORDER_CLEAN = 3; // 本体搅拌开 //本体搅拌开
  11. public static final int ORDER_MANUAL_OPEN = 4; // 手动出料开
  12. public static final int ORDER_MANUAL_CLOSE = 5; // 手动出料关
  13. public static final int ORDER_REFRIGERATION = 6; // 制冷 //制冷模式
  14. public static final int ORDER_KEEP_FRESH = 7; // 保鲜 //保鲜模式
  15. public static final int ORDER_STAND_BY = 8; // 待机
  16. public static final int ORDER_MODE_AUTO = 9; // 自动/手动模式 //自动/手动模式(自动的话消费者可以购买冰淇淋)
  17. public static final int ORDER_STOP = 10; // 本体搅拌关
  18. public static final int ORDER_MAKE_ORDER = 12; // 模拟下单
  19. public static final int ORDER_SAUCE_1 = 15; // 果酱1控制
  20. public static final int ORDER_SAUCE_2 = 16; // 果酱2控制
  21. public static final int ORDER_SAUCE_3 = 17; // 果酱3控制
  22. public static final int ORDER_KERNEL_1 = 18; // 果碎1控制
  23. public static final int ORDER_KERNEL_2 = 19; // 果碎2控制
  24. public static final int ORDER_CUT_DOWN = 20; // 关机 //关机(这个功能会把屏幕都给断电了)
  25. public static final int ORDER_DOOR_CLEAR = 21; // 出餐口清洁
  26. public static final int ORDER_OPERATE_CLEAN = 22; // 运营点检、出废料 //运营点检 (这个会把所有物料都加一遍进行制作)
  27. public static final int ORDER_MCU_VERSION = 23; // 获取mcu版本
  28. public static final int ORDER_KERNEL_3 = 24; // 果碎3控制
  29. public static final int ORDER_POWER_ON = 25; // 远程上电
  30. public static final int ORDER_CHECK_REMOTE = 32; // 远程点检
  31. public static final int ORDER_CLEAN_LISTENER = 33; // 监控清洗状态
  32. public static final int ORDER_CLEAN_UN_LISTENER = 34; // 解除锁机
  33. // 100:包含口味多选、远程断电保鲜、清洗功能、运营点检
  34. public static final int MCU_VERSION_100 = 100;
  35. // 102:远程上电,清洗监控
  36. // public static final int MCU_VERSION_102 = 102;
  37. }