Advertisement
dragonflydiy

GPX INI file to drive the CTC 3D printer

Jan 6th, 2016
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. ;
  2. ; CTC printer definition for gpx
  3. ;
  4. ;
  5. ; http://github.com/makerbot/ReplicatorG/tree/master/machines
  6.  
  7. ;************ MACHINE ************
  8.  
  9. [machine]
  10.  
  11. ; specifies the nominal filament diameter (either 1.75 or 3.0)
  12.  
  13. nominal_filament_diameter=1.75
  14.  
  15. ; spesifies the number of extruders on this machine
  16.  
  17. extruder_count=2
  18.  
  19. ; sets the timeout for homing in seconds
  20.  
  21. timeout=20
  22.  
  23. ;************ X AXIS ************
  24.  
  25. [x]
  26.  
  27. ; sets the maximum feedrate for this axis in mm/s
  28.  
  29. max_feedrate=9600
  30.  
  31. ; sets the home feedrate for this axis in mm/s
  32.  
  33. home_feedrate=2500
  34.  
  35. ; sets the number of steps per mm of movement for this axis
  36. ; Pulley dia: 10.82mm / 1/8 step = 1/(10.82 * pi / 1600)
  37.  
  38. steps_per_mm=94.40389
  39.  
  40. ; sets the homing direction for this axis
  41. ; maximum = 1
  42. ; minimum = 0
  43.  
  44. endstop=0
  45.  
  46. ;************ Y AXIS ************
  47.  
  48. [y]
  49.  
  50. ; sets the maximum feedrate for this axis in mm/s
  51.  
  52. max_feedrate=9600
  53.  
  54. ; sets the home feedrate for this axis in mm/s
  55.  
  56. home_feedrate=2500
  57.  
  58. ; sets the number of steps per mm of movement for this axis
  59. ; Pulley dia: 10.82mm / 1/8 step = 1/(10.82 * pi / 1600)
  60.  
  61. steps_per_mm=94.40389
  62.  
  63. ; sets the homing direction for this axis
  64. ; maximum = 1
  65. ; minimum = 0
  66.  
  67. endstop=0
  68.  
  69. ;************ Z AXIS ************
  70.  
  71. [z]
  72.  
  73. ; sets the maximum feedrate for this axis in mm/s
  74.  
  75. max_feedrate=1000
  76.  
  77. ; sets the home feedrate for this axis in mm/s
  78.  
  79. home_feedrate=1000
  80.  
  81. ; sets the number of steps per mm of movement for this axis
  82. ; TR-8x8 Z axis = 1/(8/1600)
  83.  
  84. steps_per_mm=400
  85.  
  86. ; sets the homing direction for this axis
  87. ; maximum = 1
  88. ; minimum = 0
  89.  
  90. endstop=1
  91.  
  92. ;************ RIGHT EXTUDER (A AXIS) ************
  93.  
  94. [a]
  95.  
  96. ; sets the maximum feedrate for this axis in mm/s
  97.  
  98. max_feedrate=1000
  99.  
  100. ; sets the number of steps per mm of extrusion
  101. ; Steps/mm is calculated by dividing the 'drive gear steps per revolution'
  102. ; (in this case, equal to motor_steps) by the 'drive gear circumference'
  103. ; (drive gear diameter = 10.14) So we get: 1600/(PI * 0.14) = 50.235....
  104.  
  105. steps_per_mm=100
  106.  
  107. ; sets the number of steps per revolution
  108.  
  109. motor_steps=3200
  110.  
  111. ; signals if this tool has a heated build platform
  112.  
  113. has_heated_build_platform=1
  114.  
  115. ;************ LEFT EXTUDER (B AXIS) ************
  116.  
  117. [b]
  118.  
  119. ; sets the maximum feedrate for this axis in mm/s
  120.  
  121. max_feedrate=1000
  122.  
  123. ; sets the number of steps per mm of extrusion
  124.  
  125. steps_per_mm=100
  126.  
  127. ; sets the number of steps per revolution
  128.  
  129. motor_steps=1600
  130.  
  131. ; signals if this tool has a heated build platform
  132.  
  133. has_heated_build_platform=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement