Keresés

Új hozzászólás Aktív témák

  • Lookup

    tag

    válasz daninet #38025 üzenetére

    Klipper:
    [gcode_macro START_PRINT]
    variable_parameter_AREA_START : 0,0                                                                              # gcode parameters for area bed mesh
    variable_parameter_AREA_END : 0,0                                                                                # gcode parameters for area bed mesh
    gcode:
        {% set BED_TEMP = params.BED_TEMP|default(60)|float %}                                                       # pull bed temp from slicer gcode
        {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(200)|float %}                                            # pull nozzle temp from slicer gcode
        M140 S{BED_TEMP}                                                                                             # start bed heating
        G90                                                                                                          # use absolute coordinates
        SET_GCODE_OFFSET Z=0.0                                                                                       # reset the G-Code Z offset (adjust Z offset if needed)
        G28                                                                                                          # home the printer
        M190 S{BED_TEMP}                                                                                             # wait for bed to reach temperature
        M104 S{EXTRUDER_TEMP}                                                                                        # set nozzle temperature
        BED_MESH_CALIBRATE AREA_START={params.AREA_START|default("0,0")} AREA_END={params.AREA_END|default("0,0")}   # probe print area
    G1 Z50 F240                                                                                                  # raise the nozzle
        M109 S{EXTRUDER_TEMP}                                                                                        # wait for nozzle to reach temperature
        G92 E0                                                                                                       # zero the extruder

    PrusaSlicer:
    M104 S0
    M140 S0
    START_PRINT EXTRUDER_TEMP={first_layer_temperature[0]} BED_TEMP={first_layer_bed_temperature[0]} AREA_START={first_layer_print_min[0]},{first_layer_print_min[1]} AREA_END={first_layer_print_max[0]},{first_layer_print_max[1]}

    Itt be kellett szúrnom a két nullás fűtést mert különben megint csak valami máshonnan kinyert értékkel bohóckodott a klipper a normális értékek helyett.

    Bed mesh on print area only eszerint.

    [ Szerkesztve ]

Új hozzászólás Aktív témák