TAP
TAP配線図!
注意事項
- TAPはサーボポートではなく、リミットスイッチポートに接続してください!!!
Loading...
TAP設定チュートリアル
ヒント
- TAPはノズルを直接リミットスイッチのトリガーとして使用するため、XYオフセットはありません。
ヒント
- TAPで変更するのはZリミットとプローブの設定のみです。
[stepper_z]
endstop_pin: probe:z_virtual_endstop
# endstop_pin: ^sht36:PA1
# position_endstop: -0.5
[probe]
pin: ^sht36:PC15 # 信号インターフェース
x_offset: 0 # X軸-ノズルに対するセンサーのオフセット
y_offset: 0 # Y軸-ノズルに対するセンサーのオフセット
#z_offset: 0 # Z軸-ノズルに対するセンサーのオフセット
speed: 3.0 # レベル調整速度
lift_speed: 5 # プローブ引き上げ速度
samples: 3 # サンプリング回数
samples_result: median # 値の取得方法(デフォルトはmedian-中央値)
sample_retract_dist: 3.0 # レベル調整後の後退距離
samples_tolerance: 0.075 # サンプリング許容誤差(小さすぎるとサンプリング回数が増える場合があります)
samples_tolerance_retries: 3 # 許容誤差超過時の再試行回数
activate_gcode:
{% set PROBE_TEMP = 150 %}
{% set MAX_TEMP = PROBE_TEMP + 5 %}
{% set ACTUAL_TEMP = printer.extruder.temperature %}
{% set TARGET_TEMP = printer.extruder.target %}
{% if TARGET_TEMP > PROBE_TEMP %}
{ action_respond_info('エクストルーダーの目標温度%.1fCが高すぎるため、%.1fCに下げます' % (TARGET_TEMP, PROBE_TEMP)) }
M106 S255
M109 S{ PROBE_TEMP }
M106 S26
{% else %}
# 目標温度は既に十分低いが、ノズルがまだ高温の場合がある。
{% if ACTUAL_TEMP > MAX_TEMP %}
{ action_respond_info('エクストルーダー温度%.1fCがまだ高すぎるため、%.1fC以下になるまで待機します' % (ACTUAL_TEMP, MAX_TEMP)) }
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM={ MAX_TEMP }
{% endif %}
{% endif %}
スタートマクロの修正
- 効果
Loading...
PrusaSlicerスタートマクロの修正
M109 S150
print_start
M109 S[first_layer_temperature]
CURAスタートマクロの修正
M109 S150
print_start
M109 S{material_print_temperature_layer_0} ;エクストルーダーの加熱開始
Orca-Slicerスタートマクロの修正
M190 S[bed_temperature_initial_layer_single]
M109 S150
print_start PRINT_MIN={first_layer_print_min[0]},{first_layer_print_min[1]} PRINT_MAX={first_layer_print_max[0]},{first_layer_print_max[1]}
M109 S[nozzle_temperature_initial_layer]
Loading...