Close



Results 1 to 2 of 2

Threaded View

  1. #2
    Staff Engineer Roberts_Clif's Avatar
    Join Date
    Jun 2017
    Location
    Washington State, USA
    Posts
    1,151
    Add Roberts_Clif on Thingiverse
    Took a quick look using google
    found this hope it helps

    Here

    The code looks almost exactly like startup code on my Hictop 3DP11/12's.
    My Hictop which is almost exactly the same as an Ender 3 with auto leveling works great with similar code.

    My Startup G-code.
    ;Filament used: {filament_amount}m {filament_weight}g
    ;Filament cost: {filament_cost}
    ;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line
    ;M109 S{print_temperature} ;Uncomment to add your own temperature line
    G21 ;metric values
    G90 ;absolute positioning
    M82 ;set extruder to absolute mode
    ;M106 S127 ;set Fan half speed
    M107 ;start with the fan off
    G28 X0 Y0 ;move X/Y to min endstops
    G28 Z0 ;move Z to min endstops
    G1 Z15.0 F{travel_speed} ;move the platform down 15mm
    ;Put printing message on LCD screen
    ;M117 My Print...
    G28 X0 Y0
    G1 E4.0 ;prime extruder
    G92 E0 ;reset extruder length
    M420 S1 ; Bed Leveling On
    M106 P1 S128 ; P1 = 2nd Fan
    M220 S32.000000
    ;M420 V1 ; Print the leveling grid.

    My End G-Code

    M104 S0 ;extruder heater off
    M140 S0 ;heated bed heater off (if you have it)
    G91 ;relative mode
    G1 Z+0.5 E-2 F{travel_speed} ;raise Z above print
    G90 ;absolute mode
    G1 X0 Y270 ;move extruder to rear left Model to front.
    M84 ;steppers off
    G90 ;absolute positioning
    Last edited by Roberts_Clif; 05-11-2024 at 08:46 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •