Advertisement
jcrash

Untitled

Dec 8th, 2017
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. ; Configuration file for SeeMeCNC Rostock MAX V3
  2.  
  3. ; Communication and general
  4. M111 S0 ; Debug off
  5. M550 PRostockMaxV2 ; Machine name and Netbios name (can be anything you like)
  6. M551 Preprap ; Machine password (used for FTP)
  7. ;*** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits
  8. M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xEA ; MAC Address
  9. ;*** Wifi Networking
  10. M552 S1 ; Enable WiFi
  11.  
  12. M555 P2 ; Set output to look like Marlin
  13. M575 P1 B57600 S1 ; Comms parameters for PanelDue
  14.  
  15. G21 ; Work in millimeters
  16. G90 ; Send absolute coordinates...
  17. M83 ; ...but relative extruder moves
  18.  
  19. ; Axis and motor configuration
  20. M569 P0 S1 ; Drive 0 goes forwards
  21. M569 P1 S0 ; Drive 1 goes forwards
  22. M569 P2 S1 ; Drive 2 goes forwards
  23. M569 P3 S1 ; Drive 3 goes forwards
  24. M569 P4 S0 ; Drive 4 goes forwards
  25. M574 X2 Y2 Z2 S1 ; set endstop configuration (all endstops at high end, active high)
  26.  
  27. G31 P50 X-25 Y38 Z1.5 ; Set Z probe trigger value, offset and trigger height
  28. ;*** The homed height is deliberately set too high in the following - you will adjust it during calibration
  29. M665 R144.158 L291.06 B120 H382.4 X0 Y0 Z0 ; set delta radius, diagonal rod length, printable radius and homed height
  30. M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them
  31. M350 X16 Y16 E16 I1 ; Set 16x microstepping with interpolation
  32. M92 X80 Y80 Z80 ; Set axis steps/mm
  33. M906 X1000 Y1000 Z1000 E800 I60 ; Set motor currents (mA) and increase idle current to 60%
  34. M201 X1000 Y1000 Z1000 E1000 ; Accelerations (mm/s^2)
  35. M203 X20000 Y20000 Z20000 E3600 ; Maximum speeds (mm/min)
  36. M566 X1200 Y1200 Z1200 E1200 ; Maximum instant speed changes mm/minute
  37.  
  38. ; Thermistors
  39. M305 P0 T102127 B4677 C1.707091e-8 R4700 ; Set thermistor + ADC parameters for heater 0
  40. M143 H0 S120 ; Set temperature limit for heater 0 to 120C
  41. M305 P1 T101245 B3407 C-2.082077e-7 R4700 ; Set thermistor + ADC parameters for heater 1
  42. M143 H1 S280 ; Set temperature limit for heater 1 to 280C
  43. M570 S180 ; Hot end may be a little slow to heat up so allow it 180 seconds
  44.  
  45. ; Fans
  46. M106 P1 S255 T45 H1 ; Fan 1 on at 45C and up
  47.  
  48. ; Tool definitions
  49. M563 P0 D0 H1 ; Define tool 0
  50. G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
  51. ;*** If you have a single-nozzle build, comment the next 2 lines
  52. ;M563 P1 D1 H2 ; Define tool 1
  53. ;G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures
  54. M92 E92.4:92.4 ; Set extruder steps per mm
  55.  
  56. ; Z probe and compensation definition
  57. ; M558 P5 X0 Y0 Z1 H5 F1200 T2400
  58.  
  59. ; grid compensation
  60.  
  61. M557 R110 S15
  62.  
  63. ;zprobe stuff
  64.  
  65. M307 H3 A-1 C-1 D-1
  66.  
  67. M558 P5 X0 Y0 Z1 H5 F100 T2000
  68.  
  69. G31 X0 Y0 Z0 P10 ; Set the zprobe offset and threshold (determine your printer's Z offset value). For a delta, use zero X and Y offset.
  70.  
  71.  
  72. ;*** If you are using axis compensation, put the figures in the following command
  73. M556 S78 X0 Y0 Z0 ; Axis compensation here
  74.  
  75. M501 ; Use config-override.g for PIDs n shit
  76. T0 ; select first hot end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement