Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    What start/finish gcode uses?

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    2
    2
    654
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • peirofundefined
      peirof
      last edited by

      Hi,

      i am interested in tweak start/finish .gcode script i use in slicer….

      I would like to know what you use, both at the START and at the END.

      In my case, i am using

      START

      [[language]]
      G90 ;Movimientos absolutos
      G1 X0 Y0 ; Moverse al centro de la cama en X e Y
      G1 Z50 ; Moverse a 50 mm de altura
      
      

      ENDING

      [[language]]
      G1 E-30 F2000 ; E
      G90; Distancias Absolutas
      G0 Z450 F1800 ; E
      M106 S0 ; turn off cooling fan
      M104 S0 ; turn off extruder
      M140 S0 ; turn off bed
      M84 ; disable motors
      
      

      Thanks

      1 Reply Last reply Reply Quote 0
      • deckingmanundefined
        deckingman
        last edited by

        I use different ones depending on the hot end and filament. Here is an example but unless you have a mixing hot end, it probably won't be much use

        Start g.code
        G28; home all
        ; layer_height =[layer_height]
        G10 P0 S185 R185 ; Set tool 0 operating and standby temperatures
        G10 P1 S185 R185 ; Set tool 1 operating and standby temperatures
        G10 P2 S185 R185 ; Set tool 2 operating and standby temperatures
        G10 P3 S185 R185 ; Set tool 3 operating and standby temperatures
        G1 Y364 F9000 ; move to Y =max
        T0; select a tool 0
        M109 S185 ; complete tool heating to 185 and wait.
        M83; Set extruder to relative

        End gcode
        G10 ; retract
        G91 ; set relative positioning
        G1 Z5 F240 ; move bed down 5mm
        G90 ; back to absolute positioning
        G1 X165 Y300 F9000; Move head to rear
        M300 S2500 P500 ; play beep to indicate end of print
        G10 P0 S-273 R-273 ; Set tool 0 operating and standby temperatures
        G10 P1 S-273 R-273 ; Set tool 1 operating and standby temperatures
        G10 P2 S-273 R-273 ; Set tool 2 operating and standby temperatures
        G10 P3 S-273 R-273
        M106 S0 ; turn off print cooling fan
        M140 S0; Turn off bed

        Ian
        https://somei3deas.wordpress.com/
        https://www.youtube.com/@deckingman

        1 Reply Last reply Reply Quote 0
        • First post
          Last post
        Unless otherwise noted, all forum content is licensed under CC-BY-SA