AIで類似品を検索
印刷プロファイル(0)
モデルファイル(0)
公開日時:2025-12-04 04:34:18
0
0
温度タワーを調整するには、py-scriptを使用することができます。
https://github.com/HerrSkunkhunt42/temptower-gcode-adjustment
または、0.2 mmの層厚で0.4 mmのノズルを使用したPETGやPLAのサンプルGコードを使用してください。
もしあなたがPrusaslicerを使用している場合、プリンタ設定>カスタムGコード>レイヤー変更前のGコードの最後に以下のカスタムGコードを挿入することができます。
M104 S{start_temp - int(temp_increase * int((layer_z - height_base) / temp_level_height_in_mm))}
必要な設定に start_temp、temp_increase、height_base、temp_level_height_in_mm を変更してください。
例:
M104 S{230 - int(5 * int((layer_z - 1.2) / 10))}
