본문으로 건너뛰기

프린터 시작 온도 불안정 대기 시간이 너무 길다

  • 이 매크로는 설정 파일에 직접 추가하면 됩니다.
  • 이 매크로의 역할은 열이 상승하는 동안 일반적으로 기다리지만, 온도가 목표치에 도달하면 즉시 다음 단계로 진행합니다.
printer.cfg
[gcode_macro M109]
rename_existing: M109.1
gcode:
{% set s = params.S|float %}
M104 {% for p in params %}{'%s%s' % (p, params[p])}{% endfor %} ; Set hotend temp
{% if s != 0 %}
TEMPERATURE_WAIT SENSOR=extruder MINIMUM={s} MAXIMUM={s+1} ; Wait for hotend temp (within 1 degree)
{% endif %}