Advertisement
chromag

Marlin vs Klipper Start Gcodes

Jan 24th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. ; --- EXISTING ENDER 3 CURA GCODES AT START ---
  2.  
  3. M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration
  4. M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate
  5. M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
  6. M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk
  7. M220 S100 ;Reset Feedrate
  8. M221 S100 ;Reset Flowrate
  9.  
  10. ; -------------------------------------------------- ;
  11.  
  12. ; --- POSSIBLE KLIPPER VERSIONS ---
  13.  
  14. ; No klipper support for M201 - uses M204
  15. ; M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration
  16.  
  17. ; No klipper support for M203
  18. ; M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate
  19.  
  20. ; M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
  21. M204 S250 ; set acceleration for print/travel to 250 mm/set
  22.  
  23. ; No klipper support for M205
  24. ; M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk
  25.  
  26. ; Set speed factor override percentage: M220 S<percent
  27. ; M220 S100 ;Reset Feedrate
  28.  
  29. ; Set extrude factor override percentage: M221 S<percent>
  30. ; M221 S100 ;Reset Flowrate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement