Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. [System]
  2. # CRITICAL=50, # ERROR=40, # WARNING=30, INFO=20, DEBUG=10, NOTSET=0
  3. loglevel = 20
  4.  
  5. # If set to True, also log to file.
  6. log_to_file = True
  7.  
  8. # Default file to log to, this can be viewed from octoprint
  9. logfile = /home/octo/.octoprint/logs/plugin_redeem.log
  10.  
  11. # Machine type is used by M115
  12. # to identify the machine connected.
  13. machine_type = Pursai3
  14.  
  15. [Steppers]
  16. microstepping_x = 7
  17. microstepping_y = 7
  18. microstepping_z = 7
  19. microstepping_h = 7
  20. microstepping_e = 7
  21.  
  22. #Mirror z on H
  23. in_use_h = True
  24.  
  25. slave_z = H
  26.  
  27. steps_pr_mm_x = 6.25
  28. steps_pr_mm_y = 6.25
  29. steps_pr_mm_z = 25.0
  30. steps_pr_mm_h = 25.0
  31. steps_pr_mm_e = 10.0
  32.  
  33. direction_e = -1
  34.  
  35. current_z = 0.7
  36. current_h = 0.7
  37. current_e = 0.7
  38. current_y = 0.7
  39. current_x = 0.7
  40.  
  41. slow_decay_x = 1
  42. slow_decay_y = 1
  43. slow_decay_z = 1
  44. slow_decay_h = 1
  45. slow_decay_e = 1
  46.  
  47. backlash_x = 0.0
  48.  
  49. # Stepper timout
  50. use_timeout = True
  51. timeout_seconds = 60
  52.  
  53. [Heaters]
  54. # For list of available temp charts, look in temp_chart.py
  55.  
  56. # Uncoment if using Hexagon hot end
  57. sensor_E = B57560G104F
  58.  
  59.  
  60. # General no-name thermistor
  61. sensor_HBP = B57560G104F
  62.  
  63. [Cold-ends]
  64. # We want the E3D fan to turn on when the thermistorgoes above 60
  65. connect-therm-E-fan-1 = True
  66.  
  67. [Endstops]
  68. # Which axis should be homed.
  69. has_x = True
  70. has_y = True
  71. has_z = True
  72.  
  73. # Just a guess, needs testing
  74. end_stop_X1_stops = x_neg
  75. end_stop_Y1_stops = y_neg
  76. end_stop_Z1_stops = z_neg,h_neg
  77. end_stop_Z2_stops = z_cw,h_cw
  78.  
  79. # Invert =
  80. # True means endstop is connected as Normally Open (NO) or not connected
  81. # False means endstop is connected as Normally Closed (NC)
  82. invert_X1 = false
  83. invert_X2 = True
  84. invert_Y1 = false
  85. invert_Y2 = True
  86. invert_Z1 = false
  87. invert_Z2 = True
  88.  
  89. [Cold-ends]
  90. # We want the E3D fan to turn on when the thermistorgoes above 60
  91. connect-therm-E-fan-1 = True
  92. add-fan-1-to-M106 = True
  93.  
  94.  
  95. [Geometry]
  96. # 0 - Cartesian
  97. # 1 - H-belt
  98. # 2 - Core XY
  99. # 3 - Delta
  100. axis_config = 0
  101.  
  102. offset_x = 0.0001
  103. offset_y = 0.0001
  104. travel_y = 0.190
  105. travel_x = 0.185
  106. travel_z = 0.20
  107. travel_h = 0.20
  108. offset_h = 0.0000
  109. offset_z = 0.0000
  110.  
  111. [Planner]
  112. max_speed_z = 0.003
  113. max_speed_h = 0.003
  114.  
  115. [Homing]
  116. home_x = 0
  117. home_y = 0
  118. home_z = 0
  119. home_h = 0
  120. home_speed_x = 0.05
  121. home_speed_y = 0.05
  122. home_speed_z = 0.05
  123. home_speed_e = 0.05
  124. home_speed_h = 0.05
  125.  
  126.  
  127. [Probe]
  128. length = 0.01
  129. speed = 0.01
  130. accel = 0.01
  131. offset_x = 0.031
  132. offset_y = 0.009
  133.  
  134. [Macros]
  135. G29 =
  136. G32
  137. M561 ; Reset the bed level matrix
  138. M557 P0 X15 Y0 ; Set probe point
  139. M557 P1 X69.5 Y0 ; Set probe point
  140. M557 P2 X154 Y0 ; Set probe point
  141. M557 P3 X154 Y87.5 ; Set probe point
  142. M557 P4 X69.5 Y87.5 ; Set probe point
  143. M557 P5 X15 Y87.5 ; Set probe point
  144. M557 P6 X15 Y175 ; Set probe point
  145. M557 P7 X69.5 Y175 ; Set probe point
  146. M557 P8 X154 Y175 ; Set probe point
  147. G0 Z15 ; Move to probe
  148.  
  149. G28 X0 Y0 ; Home X Y
  150. G92 Y0 ; Reset zero pos to probe
  151. G92 X0 ; Reset zero pos to probe
  152. G0 Y100 ; Move to probe
  153. G0 X90 ; Move to probe
  154. G28 Z0 ; Home Z
  155. G32 ; Undock probe
  156. G92 Z0 ; Reset Z height to 0
  157. G0 Z10
  158. G30 P0 S ; Probe point 0
  159. G0 Z10 ; Move the Z up
  160. G30 P1 S ; Probe point 0
  161. G0 Z10 ; Move the Z up
  162. G30 P2 S ; Probe point 0
  163. G0 Z10 ; Move the Z up
  164. G30 P3 S ; Probe point 0
  165. G0 Z10 ; Move the Z up
  166. G30 P4 S ; Probe point 0
  167. G0 Z10 ; Move the Z up
  168. G30 P5 S ; Probe point 0
  169. G0 Z10 ; Move the Z up
  170. G30 P6 S ; Probe point 0
  171. G0 Z10 ; Move the Z up
  172. G30 P7 S ; Probe point 7
  173. G0 Z10 ; Move the Z up
  174. G30 P8 S ; Probe point 8
  175. G0 Z10 ; Move the Z up
  176. G32 ; Dock probe
  177.  
  178. G28 X0 Y0 ; Home X Y
  179.  
  180. M561 U; (RFS) Update the matrix based on probe data
  181. M561 S; Show the current matrix
  182. M500; (RFS) Save data
  183.  
  184.  
  185. G31 =
  186. M574 Z2 ; Probe up (Dock sled)
  187.  
  188. G32 =
  189. M574 Z2 z_cw,h_cw ; Probe down (Undock sled)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement