Advertisement
Guest User

Start gCode

a guest
Mar 6th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. G90 ; use absolute coordinates
  2. M83 ; extruder relative mode
  3. M140 S[bed_temperature_initial_layer_single] ; set final bed temp
  4. M104 S150 ; set temporary nozzle temp to prevent oozing during homing
  5. G4 S10 ; allow partial nozzle warmup
  6. G28 ; home all axis
  7.  
  8. BED_MESH_CALIBRATE AREA_START={first_layer_print_min[0]},{first_layer_print_min[1]} AREA_END={first_layer_print_max[0]},{first_layer_print_max[1]}
  9. ;BED_MESH_PROFILE LOAD=20241028 ;default ;25_pei_hot ;pei_pattern_hot ;pei_pattern
  10. G1 Z50 F240
  11. G1 X2 Y10 F3000
  12. M104 S[nozzle_temperature_initial_layer] ; set final nozzle temp
  13. M190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize
  14. M109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize
  15. G1 Z0.28 F240
  16. G92 E0
  17. G1 Y140 E10 F2000 ; prime the nozzle
  18. G1 X2.3 F5000
  19. G92 E0
  20. G1 Y10 E10 F1800 ; prime the nozzle
  21. G92 E0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement