Advertisement
Guest User

config.g

a guest
Mar 28th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. ; General preferences
  2. G90 ; Enable absolute positioning.
  3. M83 ; Set relative extruder positioning.
  4. M550 P"duet" ; Set printer name.
  5.  
  6. ; Set the delta geometry.
  7. M665 L215.000 R105.937 H250 B70.0
  8. M666 X0 Y0 Z0 A0 B0
  9.  
  10. ; Network
  11. M552 S1 ; Connect to network.
  12. M586 P0 S1 ; Enable HTTP server.
  13. M586 P1 S0 ; Disable FTP server.
  14. M586 P2 S0 ; Disable telnet server.
  15.  
  16. ; Drives
  17. M569 P0 S1 ; Set physical drive 0 forward.
  18. M569 P1 S1 ; Set physical drive 1 forward.
  19. M569 P2 S1 ; Set physical drive 2 forward.
  20. M569 P3 S1 ; Set physical drive 3 forward.
  21. M584 X0 Y1 Z2 E3 ; Set drive mapping.
  22. M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation.
  23. M92 X100.00 Y100.00 Z100.00 E95.24 ; Set steps per mm.
  24. M566 X1200.00 Y1200.00 Z1200.00 E1200.00 ; Set maximum instantaneous speed changes (mm/min).
  25. M203 X1800.00 Y1800.00 Z1800.00 E300.00 ; Set maximum speeds (mm/min).
  26. M201 X1000.00 Y1000.00 Z1000.00 E1000.00 ; Set accelerations (mm/s^2).
  27. M906 X1000 Y1000 Z1000 E800 I30 ; Set motor currents (mA) and motor idle factor in per cent.
  28. M84 S30 ; Set idle timeout.
  29.  
  30. ; Axis Limits
  31. M208 Z0 S1 ; Set minimum Z.
  32.  
  33. ; Endstops
  34. M574 X1 Y1 Z1 S1 ; Set active high endstops.
  35.  
  36. ; Z-Probe
  37. M558 P5 I1 R1 H10 ; Set Z probe type to an inverted JohnSL board.
  38. G31 P500 X0 Y0 Z0 ; Set Z probe trigger value, offset, and trigger height.
  39.  
  40. ; Heaters
  41. M305 P0 T100000 B3950 R4700 ; Set thermistor parameters for heater 0 (bed).
  42. M143 H0 S80 ; Set temperature limit for heater 0 to 80 C.
  43. M305 P1 T100000 B4138 R4700 ; Set thermistor parameters for heater 1 (hotend).
  44. M143 H1 S280 ; Set temperature limit for heater 1 to 280 C.
  45.  
  46. ; Tools
  47. M563 P0 D0 H1 F0 ; Define tool 0.
  48. G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets.
  49. G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0 C.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement