Browse Source

增加温度和针下降高度的配置

master
王梦远 1 month ago
parent
commit
70b6b3633f
  1. 11
      src/main/java/com/iflytop/sgs/common/enums/SystemConfigCode.java

11
src/main/java/com/iflytop/sgs/common/enums/SystemConfigCode.java

@ -14,6 +14,9 @@ public enum SystemConfigCode {
pre_fill_distance("加液预充距离 最小17"),
drain_distance("加液排空距离 最小17"),
reduce_distance("过量抽液距离 7左右"),
thin_reduce_distance("稀硝酸过量抽液距离 7左右"),
thick_reduce_distance("浓硝酸过量抽液距离 7左右"),
water_reduce_distance("蒸馏水过量抽液距离 7左右"),
cycle_clean_max("允许的最大清洁次数"),
liquid_max_speed("蠕动泵最大转速限制 150"),
door_origin_is_ignore("忽略门自检"),
@ -23,7 +26,13 @@ public enum SystemConfigCode {
pre_fill_distance_when_open_service("开机预充距离 最小3"),
x_move_in_low_speed("x轴进入卡槽的速度 标准30 最大100"),
x_move_in_normal_speed("x轴正常移动速度 标准100"),
fan_start_keep_time("烘干后风扇开启开始降温的时间(秒)")
fan_start_keep_time("烘干后风扇开启开始降温的时间(秒)"),
pump_reduce_speed("蠕动泵抽液速度 0-300"),
pump_normal_speed("蠕动泵正常速度 标准值300"),
anneal_temperature("退火温度 标准值400"),
dry_temperature("烘干温度 标准值135"),
heat_temperature("加热温度 标准值100"),
needle_drop_height("抽液针下降高度 标准55")
;
private final String description;

Loading…
Cancel
Save