JamesIV4

My Ender-3 S1 printer.cfg file

Aug 3rd, 2022
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.08 KB | None | 0 0
  1. ##################Creality Ender 3 S1 Klipper Config - 3DPrintBeginner###################
  2. ######Full guide: https://3dprintbeginner.com/how-to-install-klipper-on-ender-3-s1/######
  3. [include timelapse.cfg]
  4.  
  5. [stepper_x]
  6. step_pin: PC2
  7. dir_pin: PB9
  8. enable_pin: !PC3
  9. microsteps: 16
  10. rotation_distance: 40
  11. endstop_pin: !PA5
  12. position_endstop: -4
  13. position_min: -4
  14. position_max: 255
  15. homing_speed: 50
  16.  
  17. [stepper_y]
  18. step_pin: PB8
  19. dir_pin: PB7
  20. enable_pin: !PC3
  21. microsteps: 16
  22. rotation_distance: 40
  23. endstop_pin: !PA6
  24. position_endstop: -2
  25. position_min: -2
  26. position_max: 230
  27. homing_speed: 50
  28.  
  29. [stepper_z]
  30. step_pin: PB6
  31. dir_pin: !PB5
  32. enable_pin: !PC3
  33. microsteps: 16
  34. rotation_distance: 8
  35. endstop_pin: probe:z_virtual_endstop
  36. position_max: 270
  37. position_min: -5
  38.  
  39. [extruder]
  40. max_extrude_only_distance: 100.0
  41. max_extrude_cross_section: 50
  42. step_pin: PB4
  43. dir_pin: PB3
  44. enable_pin: !PC3
  45. microsteps: 16
  46. rotation_distance: 7.6190
  47. nozzle_diameter: 0.400
  48. filament_diameter: 1.750
  49. heater_pin: PA1
  50. sensor_type: EPCOS 100K B57560G104F
  51. sensor_pin: PC5
  52. control: pid
  53. pid_Kp: 22.865
  54. pid_Ki: 1.292
  55. pid_Kd: 101.178
  56. min_temp: 0
  57. max_temp: 250
  58. pressure_advance = 0.1
  59.  
  60. [input_shaper]
  61. shaper_freq_x: 40 # frequency for the X mark of the test model
  62. shaper_freq_y: 50 # frequency for the Y mark of the test model
  63. shaper_type: mzv
  64.  
  65. [filament_switch_sensor RunoutSensor]
  66. pause_on_runout: False
  67. runout_gcode: PAUSE
  68. insert_gcode: RESUME
  69. switch_pin: !PC15
  70.  
  71. [heater_bed]
  72. heater_pin: PA7
  73. sensor_type: EPCOS 100K B57560G104F
  74. sensor_pin: PC4
  75. control: pid
  76. pid_Kp: 69.139
  77. pid_Ki: 1.273
  78. pid_Kd: 938.565
  79. min_temp: 0
  80. max_temp: 130
  81.  
  82.  
  83. [heater_fan hotend_fan]
  84. pin: PC0
  85. heater: extruder
  86. heater_temp: 50.0
  87.  
  88. [fan]
  89. pin: PA0
  90.  
  91. [mcu]
  92. serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
  93. restart_method: command
  94.  
  95. [printer]
  96. kinematics: cartesian
  97. max_velocity: 500
  98. max_accel: 1500
  99. max_accel_to_decel: 1500
  100. max_z_velocity: 5
  101. square_corner_velocity: 5.0
  102. max_z_accel: 100
  103.  
  104. [bltouch]
  105. sensor_pin: ^PC14
  106. control_pin: PC13
  107. x_offset: -32
  108. y_offset: -41
  109. #z_offset: 2.80
  110. speed:10
  111. samples:1
  112. samples_result:average
  113. probe_with_touch_mode: true
  114. stow_on_each_sample: false
  115.  
  116. [safe_z_home]
  117. home_xy_position: 154,154
  118. speed: 100
  119. z_hop: 10
  120. z_hop_speed: 5
  121.  
  122. [bed_mesh]
  123. speed: 100
  124. mesh_min: 0, 0
  125. mesh_max: 223, 189
  126. algorithm: bicubic
  127. probe_count: 50,50
  128.  
  129. [temperature_sensor Board_MCU]
  130. sensor_type: temperature_mcu
  131. min_temp: 0
  132. max_temp: 100
  133.  
  134. [temperature_sensor Raspberry_Pi]
  135. sensor_type: temperature_host
  136. min_temp: 0
  137. max_temp: 100
  138.  
  139. [virtual_sdcard]
  140. path: ~/gcode_files
  141.  
  142. [display_status]
  143.  
  144. [pause_resume]
  145.  
  146. [gcode_macro PAUSE]
  147. description: Pause the actual running print
  148. rename_existing: PAUSE_BASE
  149. # change this if you need more or less extrusion
  150. variable_extrude: 1.0
  151. gcode:
  152. ##### read E from pause macro #####
  153. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  154. ##### set park positon for x and y #####
  155. # default is your max posion from your printer.cfg
  156. {% set x_park = printer.toolhead.axis_minimum.x|float + 5.0 %}
  157. {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
  158. ##### calculate save lift position #####
  159. {% set max_z = printer.toolhead.axis_maximum.z|float %}
  160. {% set act_z = printer.toolhead.position.z|float %}
  161. {% if act_z < (max_z - 2.0) %}
  162. {% set z_safe = 2.0 %}
  163. {% else %}
  164. {% set z_safe = max_z - act_z %}
  165. {% endif %}
  166. ##### end of definitions #####
  167. PAUSE_BASE
  168. G91
  169. {% if printer.extruder.can_extrude|lower == 'true' %}
  170. G1 E-{E} F2100
  171. {% else %}
  172. {action_respond_info("Extruder not hot enough")}
  173. {% endif %}
  174. {% if "xyz" in printer.toolhead.homed_axes %}
  175. G1 Z{z_safe} F900
  176. G90
  177. G1 X{x_park} Y{y_park} F6000
  178. {% else %}
  179. {action_respond_info("Printer not homed")}
  180. {% endif %}
  181.  
  182. [gcode_macro RESUME]
  183. description: Resume the actual running print
  184. rename_existing: RESUME_BASE
  185. gcode:
  186. ##### read E from pause macro #####
  187. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  188. #### get VELOCITY parameter if specified ####
  189. {% if 'VELOCITY' in params|upper %}
  190. {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
  191. {%else %}
  192. {% set get_params = "" %}
  193. {% endif %}
  194. ##### end of definitions #####
  195. {% if printer.extruder.can_extrude|lower == 'true' %}
  196. G91
  197. G1 E{E} F2100
  198. {% else %}
  199. {action_respond_info("Extruder not hot enough")}
  200. {% endif %}
  201. RESUME_BASE {get_params}
  202.  
  203. [gcode_macro CANCEL_PRINT]
  204. description: Cancel the actual running print
  205. rename_existing: CANCEL_PRINT_BASE
  206. gcode:
  207. TURN_OFF_HEATERS
  208. CANCEL_PRINT_BASE
  209.  
  210. #*# <---------------------- SAVE_CONFIG ---------------------->
  211. #*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
  212. #*#
  213. #*# [bed_mesh default]
  214. #*# version = 1
  215. #*# points =
  216. #*# 0.037500, 0.032500, 0.012500, 0.005000, -0.007500, 0.022500, 0.035000, 0.042500, 0.025000, 0.020000, 0.005000, -0.002500, -0.030000, -0.032500, -0.050000, -0.055000, -0.062500, -0.072500, -0.052500, -0.037500, -0.012500, 0.002500, 0.027500, 0.042500, 0.052500, 0.055000, 0.075000, 0.082500, 0.095000, 0.122500, 0.152500, 0.172500, 0.170000, 0.170000, 0.170000, 0.197500, 0.217500, 0.265000, 0.270000, 0.282500, 0.295000, 0.312500, 0.332500, 0.352500, 0.355000, 0.387500, 0.420000, 0.445000, 0.490000, 0.527500
  217. #*# 0.047500, 0.037500, 0.010000, 0.015000, -0.000000, 0.015000, 0.020000, 0.020000, 0.015000, 0.007500, -0.010000, -0.027500, -0.035000, -0.052500, -0.062500, -0.070000, -0.067500, -0.080000, -0.077500, -0.067500, -0.032500, -0.025000, -0.002500, 0.012500, 0.027500, 0.032500, 0.042500, 0.045000, 0.055000, 0.090000, 0.115000, 0.130000, 0.130000, 0.125000, 0.122500, 0.157500, 0.195000, 0.220000, 0.237500, 0.255000, 0.260000, 0.282500, 0.285000, 0.300000, 0.325000, 0.345000, 0.370000, 0.400000, 0.435000, 0.477500
  218. #*# 0.077500, 0.065000, 0.040000, 0.027500, 0.025000, 0.040000, 0.052500, 0.050000, 0.042500, 0.035000, 0.017500, 0.012500, -0.017500, -0.032500, -0.047500, -0.052500, -0.062500, -0.075000, -0.060000, -0.055000, -0.020000, 0.002500, 0.020000, 0.035000, 0.037500, 0.040000, 0.052500, 0.050000, 0.055000, 0.085000, 0.100000, 0.112500, 0.117500, 0.117500, 0.130000, 0.160000, 0.200000, 0.222500, 0.247500, 0.262500, 0.257500, 0.282500, 0.292500, 0.297500, 0.317500, 0.340000, 0.367500, 0.400000, 0.435000, 0.480000
  219. #*# 0.090000, 0.062500, 0.042500, 0.042500, 0.017500, 0.040000, 0.052500, 0.055000, 0.055000, 0.042500, 0.025000, 0.025000, -0.015000, -0.035000, -0.045000, -0.050000, -0.055000, -0.065000, -0.055000, -0.052500, -0.017500, -0.005000, 0.020000, 0.045000, 0.042500, 0.035000, 0.057500, 0.045000, 0.040000, 0.070000, 0.085000, 0.100000, 0.107500, 0.117500, 0.120000, 0.157500, 0.200000, 0.227500, 0.245000, 0.262500, 0.260000, 0.280000, 0.295000, 0.305000, 0.327500, 0.355000, 0.365000, 0.397500, 0.435000, 0.485000
  220. #*# 0.110000, 0.085000, 0.067500, 0.055000, 0.047500, 0.065000, 0.067500, 0.072500, 0.070000, 0.057500, 0.030000, 0.042500, 0.005000, -0.015000, -0.022500, -0.035000, -0.047500, -0.042500, -0.045000, -0.040000, 0.002500, 0.007500, 0.032500, 0.045000, 0.050000, 0.045000, 0.055000, 0.047500, 0.045000, 0.057500, 0.070000, 0.082500, 0.085000, 0.100000, 0.102500, 0.152500, 0.177500, 0.207500, 0.237500, 0.262500, 0.255000, 0.280000, 0.287500, 0.305000, 0.307500, 0.335000, 0.355000, 0.392500, 0.432500, 0.460000
  221. #*# 0.100000, 0.082500, 0.062500, 0.050000, 0.027500, 0.057500, 0.042500, 0.055000, 0.055000, 0.040000, 0.025000, 0.020000, -0.007500, -0.035000, -0.037500, -0.050000, -0.057500, -0.057500, -0.047500, -0.047500, -0.025000, -0.015000, 0.005000, 0.025000, 0.022500, 0.032500, 0.037500, 0.012500, 0.015000, 0.025000, 0.052500, 0.047500, 0.045000, 0.065000, 0.080000, 0.125000, 0.162500, 0.202500, 0.227500, 0.242500, 0.242500, 0.262500, 0.275000, 0.282500, 0.295000, 0.317500, 0.335000, 0.360000, 0.397500, 0.442500
  222. #*# 0.105000, 0.070000, 0.052500, 0.040000, 0.045000, 0.050000, 0.057500, 0.062500, 0.060000, 0.042500, 0.037500, 0.027500, -0.007500, -0.027500, -0.037500, -0.060000, -0.055000, -0.070000, -0.065000, -0.070000, -0.017500, -0.012500, 0.017500, 0.025000, 0.022500, 0.025000, 0.027500, 0.017500, 0.002500, 0.007500, 0.020000, 0.027500, 0.030000, 0.052500, 0.070000, 0.125000, 0.152500, 0.187500, 0.202500, 0.217500, 0.222500, 0.232500, 0.247500, 0.247500, 0.275000, 0.297500, 0.315000, 0.342500, 0.390000, 0.422500
  223. #*# 0.122500, 0.102500, 0.077500, 0.067500, 0.040000, 0.060000, 0.067500, 0.062500, 0.065000, 0.047500, 0.030000, 0.027500, -0.002500, -0.025000, -0.040000, -0.055000, -0.052500, -0.072500, -0.055000, -0.067500, -0.032500, -0.015000, 0.005000, 0.015000, 0.015000, 0.017500, 0.020000, -0.002500, -0.012500, -0.015000, -0.002500, 0.015000, 0.022500, 0.037500, 0.067500, 0.112500, 0.140000, 0.182500, 0.200000, 0.210000, 0.207500, 0.220000, 0.230000, 0.237500, 0.255000, 0.277500, 0.295000, 0.320000, 0.365000, 0.400000
  224. #*# 0.087500, 0.070000, 0.045000, 0.025000, 0.027500, 0.030000, 0.030000, 0.042500, 0.035000, 0.022500, -0.000000, 0.002500, -0.030000, -0.057500, -0.070000, -0.072500, -0.080000, -0.100000, -0.082500, -0.092500, -0.057500, -0.052500, -0.015000, -0.015000, -0.000000, -0.015000, -0.010000, -0.020000, -0.042500, -0.022500, -0.017500, -0.017500, -0.010000, 0.017500, 0.037500, 0.070000, 0.112500, 0.140000, 0.155000, 0.180000, 0.172500, 0.192500, 0.192500, 0.202500, 0.217500, 0.240000, 0.275000, 0.292500, 0.322500, 0.370000
  225. #*# 0.105000, 0.090000, 0.065000, 0.050000, 0.037500, 0.042500, 0.040000, 0.055000, 0.042500, 0.032500, 0.010000, 0.015000, -0.020000, -0.035000, -0.050000, -0.057500, -0.057500, -0.080000, -0.067500, -0.065000, -0.040000, -0.022500, 0.005000, 0.005000, 0.010000, 0.012500, 0.007500, -0.002500, -0.012500, -0.002500, 0.002500, 0.010000, 0.010000, 0.040000, 0.062500, 0.097500, 0.137500, 0.175000, 0.192500, 0.205000, 0.195000, 0.230000, 0.220000, 0.227500, 0.247500, 0.280000, 0.297500, 0.320000, 0.345000, 0.395000
  226. #*# 0.102500, 0.090000, 0.057500, 0.042500, 0.037500, 0.040000, 0.050000, 0.045000, 0.047500, 0.035000, 0.012500, 0.015000, -0.015000, -0.035000, -0.047500, -0.057500, -0.067500, -0.075000, -0.070000, -0.060000, -0.040000, -0.015000, -0.000000, 0.015000, 0.002500, -0.002500, 0.007500, -0.020000, -0.022500, -0.020000, -0.010000, -0.000000, 0.002500, 0.025000, 0.045000, 0.085000, 0.120000, 0.162500, 0.180000, 0.185000, 0.180000, 0.195000, 0.197500, 0.200000, 0.222500, 0.247500, 0.272500, 0.290000, 0.330000, 0.380000
  227. #*# 0.102500, 0.085000, 0.045000, 0.032500, 0.022500, 0.032500, 0.035000, 0.042500, 0.042500, 0.020000, 0.010000, 0.007500, -0.027500, -0.050000, -0.060000, -0.060000, -0.070000, -0.087500, -0.075000, -0.070000, -0.047500, -0.035000, -0.012500, -0.005000, 0.002500, -0.002500, 0.005000, -0.020000, -0.025000, -0.027500, -0.015000, -0.005000, -0.005000, 0.020000, 0.045000, 0.092500, 0.125000, 0.157500, 0.177500, 0.187500, 0.182500, 0.197500, 0.212500, 0.217500, 0.227500, 0.247500, 0.285000, 0.297500, 0.337500, 0.380000
  228. #*# 0.080000, 0.060000, 0.020000, 0.007500, -0.000000, 0.017500, 0.027500, 0.017500, 0.030000, 0.012500, -0.002500, -0.012500, -0.040000, -0.060000, -0.070000, -0.075000, -0.075000, -0.080000, -0.075000, -0.082500, -0.047500, -0.032500, -0.010000, -0.002500, 0.007500, -0.002500, -0.000000, -0.015000, -0.022500, -0.022500, -0.007500, -0.000000, -0.000000, 0.032500, 0.052500, 0.100000, 0.137500, 0.160000, 0.177500, 0.200000, 0.195000, 0.212500, 0.212500, 0.220000, 0.255000, 0.272500, 0.290000, 0.315000, 0.357500, 0.400000
  229. #*# 0.070000, 0.050000, 0.015000, 0.007500, -0.015000, -0.000000, 0.005000, 0.020000, 0.012500, -0.002500, -0.010000, -0.020000, -0.050000, -0.065000, -0.080000, -0.082500, -0.085000, -0.087500, -0.080000, -0.085000, -0.050000, -0.032500, -0.022500, -0.007500, -0.000000, 0.010000, 0.005000, -0.017500, -0.027500, -0.025000, -0.012500, -0.005000, 0.005000, 0.035000, 0.062500, 0.105000, 0.147500, 0.180000, 0.187500, 0.212500, 0.210000, 0.227500, 0.232500, 0.245000, 0.252500, 0.290000, 0.315000, 0.335000, 0.367500, 0.407500
  230. #*# 0.055000, 0.035000, -0.002500, -0.005000, -0.010000, -0.007500, -0.007500, 0.005000, 0.002500, -0.010000, -0.017500, -0.022500, -0.057500, -0.070000, -0.090000, -0.095000, -0.100000, -0.105000, -0.077500, -0.085000, -0.047500, -0.032500, -0.015000, -0.002500, 0.002500, -0.007500, -0.000000, -0.017500, -0.020000, -0.022500, -0.005000, 0.005000, 0.010000, 0.037500, 0.057500, 0.112500, 0.140000, 0.172500, 0.187500, 0.212500, 0.217500, 0.222500, 0.235000, 0.247500, 0.272500, 0.285000, 0.315000, 0.342500, 0.380000, 0.430000
  231. #*# 0.085000, 0.062500, 0.015000, -0.002500, -0.010000, 0.005000, 0.017500, 0.017500, 0.010000, -0.005000, -0.012500, -0.012500, -0.045000, -0.070000, -0.070000, -0.085000, -0.077500, -0.092500, -0.085000, -0.087500, -0.042500, -0.032500, -0.015000, -0.010000, 0.005000, -0.015000, -0.005000, -0.022500, -0.025000, -0.025000, -0.017500, -0.002500, 0.002500, 0.037500, 0.050000, 0.105000, 0.142500, 0.175000, 0.177500, 0.210000, 0.212500, 0.230000, 0.232500, 0.240000, 0.272500, 0.287500, 0.300000, 0.332500, 0.360000, 0.415000
  232. #*# 0.080000, 0.057500, 0.025000, 0.017500, -0.005000, 0.010000, 0.017500, 0.032500, 0.027500, 0.015000, 0.002500, -0.005000, -0.032500, -0.052500, -0.067500, -0.075000, -0.057500, -0.080000, -0.085000, -0.072500, -0.037500, -0.012500, 0.005000, 0.012500, 0.015000, 0.002500, 0.015000, -0.000000, -0.015000, -0.010000, 0.002500, 0.015000, 0.025000, 0.050000, 0.065000, 0.115000, 0.147500, 0.195000, 0.197500, 0.212500, 0.220000, 0.235000, 0.247500, 0.255000, 0.277500, 0.302500, 0.325000, 0.357500, 0.385000, 0.430000
  233. #*# 0.067500, 0.057500, 0.012500, -0.010000, -0.025000, 0.002500, 0.005000, 0.005000, 0.005000, -0.002500, -0.005000, -0.017500, -0.050000, -0.067500, -0.072500, -0.080000, -0.075000, -0.087500, -0.080000, -0.080000, -0.050000, -0.027500, -0.017500, -0.005000, -0.000000, -0.005000, 0.010000, -0.012500, -0.015000, -0.020000, -0.002500, 0.012500, 0.022500, 0.042500, 0.062500, 0.100000, 0.145000, 0.185000, 0.192500, 0.215000, 0.230000, 0.237500, 0.267500, 0.247500, 0.282500, 0.305000, 0.320000, 0.352500, 0.382500, 0.432500
  234. #*# 0.085000, 0.070000, 0.030000, 0.007500, -0.000000, 0.025000, 0.032500, 0.040000, 0.030000, 0.025000, 0.010000, 0.005000, -0.025000, -0.047500, -0.055000, -0.047500, -0.060000, -0.067500, -0.067500, -0.062500, -0.020000, -0.010000, 0.010000, 0.022500, 0.025000, 0.017500, 0.020000, 0.010000, 0.005000, 0.005000, 0.020000, 0.032500, 0.037500, 0.065000, 0.080000, 0.122500, 0.157500, 0.197500, 0.210000, 0.225000, 0.227500, 0.237500, 0.265000, 0.270000, 0.285000, 0.310000, 0.335000, 0.367500, 0.390000, 0.432500
  235. #*# 0.102500, 0.090000, 0.057500, 0.035000, 0.032500, 0.040000, 0.042500, 0.065000, 0.050000, 0.035000, 0.012500, 0.010000, -0.015000, -0.035000, -0.050000, -0.050000, -0.045000, -0.065000, -0.067500, -0.057500, -0.025000, -0.020000, 0.002500, 0.007500, 0.025000, 0.012500, 0.015000, 0.002500, -0.012500, -0.007500, 0.010000, 0.012500, 0.025000, 0.050000, 0.070000, 0.110000, 0.152500, 0.185000, 0.200000, 0.212500, 0.217500, 0.230000, 0.240000, 0.247500, 0.260000, 0.287500, 0.310000, 0.330000, 0.365000, 0.410000
  236. #*# 0.120000, 0.097500, 0.085000, 0.065000, 0.042500, 0.060000, 0.067500, 0.077500, 0.072500, 0.055000, 0.040000, 0.030000, 0.007500, -0.015000, -0.027500, -0.035000, -0.035000, -0.040000, -0.037500, -0.032500, -0.000000, -0.000000, 0.027500, 0.030000, 0.037500, 0.035000, 0.040000, 0.015000, 0.010000, 0.012500, 0.027500, 0.035000, 0.042500, 0.055000, 0.070000, 0.125000, 0.150000, 0.192500, 0.197500, 0.222500, 0.225000, 0.235000, 0.240000, 0.255000, 0.275000, 0.300000, 0.317500, 0.342500, 0.382500, 0.420000
  237. #*# 0.132500, 0.115000, 0.080000, 0.067500, 0.050000, 0.070000, 0.085000, 0.082500, 0.082500, 0.067500, 0.052500, 0.045000, 0.005000, -0.012500, -0.022500, -0.022500, -0.030000, -0.042500, -0.040000, -0.035000, -0.007500, 0.010000, 0.025000, 0.035000, 0.037500, 0.027500, 0.045000, 0.017500, 0.015000, 0.017500, 0.025000, 0.045000, 0.042500, 0.057500, 0.072500, 0.122500, 0.165000, 0.200000, 0.207500, 0.227500, 0.232500, 0.245000, 0.252500, 0.265000, 0.275000, 0.307500, 0.325000, 0.342500, 0.377500, 0.417500
  238. #*# 0.142500, 0.122500, 0.095000, 0.082500, 0.077500, 0.077500, 0.105000, 0.095000, 0.100000, 0.082500, 0.065000, 0.052500, 0.017500, -0.002500, -0.017500, -0.005000, -0.007500, -0.030000, -0.020000, -0.022500, 0.007500, 0.017500, 0.040000, 0.047500, 0.050000, 0.042500, 0.047500, 0.032500, 0.027500, 0.025000, 0.032500, 0.045000, 0.045000, 0.057500, 0.075000, 0.132500, 0.157500, 0.195000, 0.207500, 0.230000, 0.230000, 0.245000, 0.252500, 0.255000, 0.285000, 0.302500, 0.325000, 0.350000, 0.390000, 0.427500
  239. #*# 0.135000, 0.115000, 0.087500, 0.067500, 0.062500, 0.075000, 0.087500, 0.092500, 0.092500, 0.082500, 0.055000, 0.047500, 0.005000, -0.007500, -0.022500, -0.022500, -0.020000, -0.037500, -0.040000, -0.035000, -0.000000, 0.007500, 0.032500, 0.040000, 0.040000, 0.035000, 0.045000, 0.032500, 0.010000, 0.020000, 0.025000, 0.032500, 0.032500, 0.057500, 0.075000, 0.127500, 0.160000, 0.200000, 0.207500, 0.225000, 0.232500, 0.242500, 0.257500, 0.262500, 0.280000, 0.307500, 0.327500, 0.347500, 0.375000, 0.422500
  240. #*# 0.145000, 0.130000, 0.100000, 0.082500, 0.077500, 0.080000, 0.090000, 0.095000, 0.100000, 0.082500, 0.067500, 0.057500, 0.012500, 0.002500, -0.010000, -0.010000, -0.015000, -0.027500, -0.020000, -0.022500, 0.007500, 0.012500, 0.040000, 0.042500, 0.045000, 0.045000, 0.050000, 0.030000, 0.025000, 0.025000, 0.030000, 0.040000, 0.035000, 0.055000, 0.080000, 0.122500, 0.165000, 0.202500, 0.205000, 0.217500, 0.230000, 0.240000, 0.250000, 0.252500, 0.282500, 0.302500, 0.327500, 0.342500, 0.375000, 0.412500
  241. #*# 0.127500, 0.105000, 0.070000, 0.067500, 0.055000, 0.070000, 0.067500, 0.090000, 0.087500, 0.060000, 0.047500, 0.042500, -0.000000, -0.012500, -0.012500, -0.030000, -0.030000, -0.047500, -0.037500, -0.045000, -0.010000, -0.000000, 0.025000, 0.027500, 0.037500, 0.037500, 0.040000, 0.015000, 0.002500, 0.012500, 0.030000, 0.027500, 0.030000, 0.047500, 0.067500, 0.122500, 0.157500, 0.202500, 0.202500, 0.222500, 0.217500, 0.240000, 0.247500, 0.260000, 0.280000, 0.297500, 0.320000, 0.337500, 0.367500, 0.410000
  242. #*# 0.162500, 0.142500, 0.110000, 0.097500, 0.085000, 0.097500, 0.107500, 0.115000, 0.100000, 0.087500, 0.085000, 0.055000, 0.015000, 0.002500, -0.012500, -0.012500, -0.015000, -0.032500, -0.022500, -0.027500, 0.005000, 0.015000, 0.037500, 0.045000, 0.052500, 0.047500, 0.037500, 0.020000, 0.012500, 0.020000, 0.027500, 0.030000, 0.030000, 0.052500, 0.072500, 0.110000, 0.147500, 0.185000, 0.192500, 0.210000, 0.202500, 0.230000, 0.232500, 0.235000, 0.260000, 0.275000, 0.320000, 0.322500, 0.360000, 0.392500
  243. #*# 0.145000, 0.120000, 0.087500, 0.075000, 0.065000, 0.077500, 0.082500, 0.097500, 0.087500, 0.065000, 0.055000, 0.042500, 0.012500, -0.012500, -0.027500, -0.017500, -0.025000, -0.042500, -0.037500, -0.032500, -0.015000, 0.002500, 0.032500, 0.040000, 0.050000, 0.057500, 0.062500, 0.022500, 0.012500, 0.012500, 0.020000, 0.027500, 0.035000, 0.055000, 0.075000, 0.117500, 0.147500, 0.195000, 0.195000, 0.212500, 0.217500, 0.232500, 0.240000, 0.245000, 0.262500, 0.282500, 0.312500, 0.327500, 0.355000, 0.412500
  244. #*# 0.162500, 0.137500, 0.105000, 0.107500, 0.090000, 0.095000, 0.105000, 0.112500, 0.095000, 0.077500, 0.062500, 0.050000, 0.020000, -0.005000, -0.010000, -0.005000, -0.010000, -0.030000, -0.017500, -0.022500, 0.010000, 0.015000, 0.042500, 0.055000, 0.065000, 0.100000, 0.165000, 0.050000, 0.017500, 0.017500, 0.020000, 0.032500, 0.035000, 0.057500, 0.075000, 0.112500, 0.150000, 0.180000, 0.190000, 0.210000, 0.207500, 0.220000, 0.225000, 0.237500, 0.257500, 0.280000, 0.295000, 0.317500, 0.357500, 0.397500
  245. #*# 0.185000, 0.147500, 0.115000, 0.100000, 0.090000, 0.095000, 0.102500, 0.112500, 0.107500, 0.075000, 0.062500, 0.042500, 0.015000, -0.005000, -0.015000, -0.020000, -0.022500, -0.037500, -0.025000, -0.035000, -0.005000, 0.010000, 0.040000, 0.040000, 0.062500, 0.097500, 0.117500, 0.040000, 0.007500, 0.010000, 0.020000, 0.035000, 0.030000, 0.050000, 0.065000, 0.112500, 0.150000, 0.187500, 0.202500, 0.212500, 0.207500, 0.225000, 0.232500, 0.245000, 0.257500, 0.277500, 0.300000, 0.322500, 0.350000, 0.392500
  246. #*# 0.167500, 0.142500, 0.115000, 0.095000, 0.080000, 0.105000, 0.102500, 0.107500, 0.102500, 0.085000, 0.057500, 0.050000, 0.017500, 0.010000, -0.012500, -0.015000, -0.017500, -0.032500, -0.020000, -0.027500, 0.002500, 0.022500, 0.047500, 0.045000, 0.062500, 0.065000, 0.052500, 0.017500, 0.007500, 0.015000, 0.020000, 0.032500, 0.032500, 0.055000, 0.075000, 0.117500, 0.150000, 0.187500, 0.197500, 0.215000, 0.212500, 0.227500, 0.240000, 0.250000, 0.260000, 0.282500, 0.300000, 0.327500, 0.365000, 0.397500
  247. #*# 0.152500, 0.135000, 0.092500, 0.077500, 0.070000, 0.092500, 0.095000, 0.107500, 0.100000, 0.077500, 0.050000, 0.042500, 0.007500, -0.005000, -0.020000, -0.022500, -0.030000, -0.045000, -0.030000, -0.037500, -0.007500, 0.015000, 0.045000, 0.045000, 0.055000, 0.042500, 0.037500, 0.022500, 0.010000, 0.005000, 0.025000, 0.032500, 0.032500, 0.052500, 0.075000, 0.120000, 0.162500, 0.205000, 0.210000, 0.217500, 0.230000, 0.250000, 0.265000, 0.272500, 0.280000, 0.302500, 0.317500, 0.340000, 0.370000, 0.412500
  248. #*# 0.140000, 0.117500, 0.082500, 0.072500, 0.062500, 0.077500, 0.080000, 0.085000, 0.087500, 0.075000, 0.042500, 0.045000, 0.007500, -0.015000, -0.017500, -0.020000, -0.027500, -0.030000, -0.030000, -0.030000, -0.007500, 0.012500, 0.040000, 0.042500, 0.050000, 0.040000, 0.040000, 0.022500, 0.005000, 0.010000, 0.020000, 0.032500, 0.032500, 0.057500, 0.082500, 0.130000, 0.165000, 0.205000, 0.210000, 0.235000, 0.225000, 0.247500, 0.250000, 0.277500, 0.285000, 0.307500, 0.330000, 0.357500, 0.385000, 0.422500
  249. #*# 0.152500, 0.140000, 0.102500, 0.090000, 0.072500, 0.085000, 0.085000, 0.092500, 0.092500, 0.072500, 0.050000, 0.047500, 0.020000, -0.002500, -0.012500, -0.012500, -0.025000, -0.030000, -0.022500, -0.020000, 0.010000, 0.032500, 0.045000, 0.052500, 0.050000, 0.045000, 0.042500, 0.027500, 0.010000, 0.012500, 0.025000, 0.040000, 0.045000, 0.065000, 0.082500, 0.130000, 0.165000, 0.210000, 0.220000, 0.245000, 0.240000, 0.247500, 0.265000, 0.277500, 0.290000, 0.310000, 0.327500, 0.352500, 0.377500, 0.417500
  250. #*# 0.162500, 0.135000, 0.105000, 0.087500, 0.072500, 0.087500, 0.087500, 0.107500, 0.102500, 0.082500, 0.062500, 0.057500, 0.022500, 0.010000, -0.007500, -0.015000, -0.012500, -0.020000, -0.007500, -0.017500, 0.015000, 0.030000, 0.050000, 0.052500, 0.055000, 0.052500, 0.045000, 0.030000, 0.015000, 0.017500, 0.032500, 0.040000, 0.047500, 0.067500, 0.090000, 0.132500, 0.170000, 0.212500, 0.225000, 0.237500, 0.232500, 0.247500, 0.255000, 0.262500, 0.280000, 0.305000, 0.330000, 0.350000, 0.382500, 0.422500
  251. #*# 0.147500, 0.137500, 0.082500, 0.087500, 0.057500, 0.075000, 0.085000, 0.097500, 0.082500, 0.067500, 0.055000, 0.045000, 0.015000, -0.007500, -0.010000, -0.022500, -0.017500, -0.032500, -0.017500, -0.027500, 0.010000, 0.025000, 0.045000, 0.047500, 0.047500, 0.050000, 0.050000, 0.025000, 0.012500, 0.010000, 0.022500, 0.027500, 0.045000, 0.062500, 0.082500, 0.135000, 0.170000, 0.205000, 0.222500, 0.240000, 0.235000, 0.245000, 0.260000, 0.265000, 0.287500, 0.310000, 0.327500, 0.352500, 0.377500, 0.422500
  252. #*# 0.190000, 0.165000, 0.135000, 0.115000, 0.100000, 0.115000, 0.125000, 0.127500, 0.117500, 0.105000, 0.087500, 0.067500, 0.040000, 0.015000, 0.005000, 0.002500, 0.002500, -0.022500, -0.002500, -0.007500, 0.017500, 0.037500, 0.055000, 0.060000, 0.065000, 0.060000, 0.057500, 0.037500, 0.022500, 0.015000, 0.025000, 0.035000, 0.045000, 0.065000, 0.092500, 0.135000, 0.165000, 0.197500, 0.215000, 0.220000, 0.220000, 0.240000, 0.242500, 0.250000, 0.262500, 0.287500, 0.312500, 0.337500, 0.365000, 0.400000
  253. #*# 0.215000, 0.192500, 0.155000, 0.137500, 0.120000, 0.137500, 0.145000, 0.140000, 0.132500, 0.115000, 0.100000, 0.090000, 0.052500, 0.027500, 0.015000, 0.007500, 0.010000, -0.010000, 0.002500, -0.012500, 0.012500, 0.032500, 0.050000, 0.057500, 0.057500, 0.050000, 0.050000, 0.025000, 0.010000, 0.017500, 0.017500, 0.032500, 0.037500, 0.062500, 0.080000, 0.130000, 0.160000, 0.195000, 0.200000, 0.215000, 0.217500, 0.230000, 0.235000, 0.242500, 0.255000, 0.280000, 0.292500, 0.317500, 0.355000, 0.392500
  254. #*# 0.212500, 0.180000, 0.147500, 0.127500, 0.115000, 0.132500, 0.127500, 0.135000, 0.132500, 0.107500, 0.090000, 0.077500, 0.055000, 0.030000, 0.012500, 0.007500, 0.012500, -0.000000, 0.002500, -0.002500, 0.025000, 0.040000, 0.050000, 0.057500, 0.060000, 0.055000, 0.052500, 0.027500, 0.020000, 0.025000, 0.025000, 0.040000, 0.045000, 0.067500, 0.085000, 0.125000, 0.160000, 0.190000, 0.200000, 0.217500, 0.215000, 0.242500, 0.225000, 0.245000, 0.252500, 0.280000, 0.302500, 0.317500, 0.352500, 0.385000
  255. #*# 0.232500, 0.202500, 0.162500, 0.155000, 0.130000, 0.150000, 0.147500, 0.155000, 0.145000, 0.127500, 0.100000, 0.105000, 0.057500, 0.025000, 0.020000, 0.005000, -0.000000, -0.010000, -0.000000, -0.012500, 0.020000, 0.037500, 0.045000, 0.057500, 0.052500, 0.042500, 0.045000, 0.025000, 0.007500, 0.007500, 0.012500, 0.020000, 0.027500, 0.045000, 0.072500, 0.115000, 0.147500, 0.180000, 0.187500, 0.207500, 0.200000, 0.220000, 0.227500, 0.227500, 0.230000, 0.252500, 0.280000, 0.305000, 0.320000, 0.365000
  256. #*# 0.237500, 0.210000, 0.170000, 0.162500, 0.137500, 0.150000, 0.152500, 0.167500, 0.155000, 0.135000, 0.110000, 0.100000, 0.065000, 0.042500, 0.030000, 0.017500, 0.030000, 0.005000, 0.015000, 0.005000, 0.042500, 0.045000, 0.052500, 0.060000, 0.062500, 0.055000, 0.055000, 0.032500, 0.020000, 0.017500, 0.022500, 0.027500, 0.037500, 0.062500, 0.077500, 0.127500, 0.152500, 0.180000, 0.197500, 0.210000, 0.212500, 0.222500, 0.220000, 0.240000, 0.275000, 0.265000, 0.287500, 0.297500, 0.325000, 0.365000
  257. #*# 0.240000, 0.210000, 0.165000, 0.147500, 0.137500, 0.152500, 0.147500, 0.155000, 0.147500, 0.127500, 0.112500, 0.097500, 0.047500, 0.032500, 0.015000, 0.007500, 0.007500, -0.000000, -0.005000, -0.005000, 0.025000, 0.035000, 0.047500, 0.047500, 0.052500, 0.045000, 0.045000, 0.027500, 0.010000, 0.002500, 0.010000, 0.015000, 0.020000, 0.047500, 0.065000, 0.112500, 0.155000, 0.190000, 0.190000, 0.212500, 0.210000, 0.220000, 0.220000, 0.227500, 0.242500, 0.260000, 0.280000, 0.300000, 0.322500, 0.370000
  258. #*# 0.240000, 0.205000, 0.172500, 0.155000, 0.145000, 0.157500, 0.150000, 0.152500, 0.155000, 0.130000, 0.110000, 0.092500, 0.055000, 0.040000, 0.025000, 0.020000, 0.007500, -0.002500, 0.010000, -0.000000, 0.027500, 0.040000, 0.055000, 0.055000, 0.057500, 0.050000, 0.050000, 0.025000, 0.007500, 0.005000, 0.007500, 0.022500, 0.025000, 0.050000, 0.070000, 0.110000, 0.142500, 0.172500, 0.182500, 0.207500, 0.195000, 0.210000, 0.205000, 0.217500, 0.227500, 0.250000, 0.262500, 0.287500, 0.312500, 0.362500
  259. #*# 0.250000, 0.217500, 0.182500, 0.177500, 0.145000, 0.162500, 0.155000, 0.167500, 0.157500, 0.140000, 0.122500, 0.105000, 0.077500, 0.040000, 0.025000, 0.017500, 0.007500, -0.002500, 0.005000, -0.000000, 0.035000, 0.042500, 0.052500, 0.052500, 0.055000, 0.052500, 0.047500, 0.022500, 0.002500, 0.002500, 0.012500, 0.020000, 0.025000, 0.047500, 0.062500, 0.112500, 0.142500, 0.180000, 0.187500, 0.192500, 0.195000, 0.207500, 0.212500, 0.217500, 0.225000, 0.245000, 0.255000, 0.280000, 0.305000, 0.345000
  260. #*# 0.252500, 0.222500, 0.182500, 0.170000, 0.157500, 0.165000, 0.165000, 0.175000, 0.165000, 0.142500, 0.125000, 0.110000, 0.082500, 0.050000, 0.035000, 0.022500, 0.020000, -0.002500, 0.020000, 0.015000, 0.032500, 0.052500, 0.067500, 0.065000, 0.067500, 0.062500, 0.060000, 0.032500, 0.025000, 0.017500, 0.025000, 0.027500, 0.030000, 0.055000, 0.077500, 0.117500, 0.150000, 0.180000, 0.187500, 0.197500, 0.195000, 0.217500, 0.205000, 0.230000, 0.232500, 0.257500, 0.267500, 0.285000, 0.315000, 0.360000
  261. #*# 0.260000, 0.227500, 0.200000, 0.187500, 0.155000, 0.167500, 0.167500, 0.165000, 0.160000, 0.147500, 0.122500, 0.115000, 0.070000, 0.045000, 0.030000, 0.022500, 0.017500, 0.002500, 0.010000, 0.005000, 0.032500, 0.052500, 0.060000, 0.055000, 0.062500, 0.055000, 0.062500, 0.027500, 0.012500, 0.012500, 0.025000, 0.025000, 0.032500, 0.055000, 0.072500, 0.112500, 0.147500, 0.177500, 0.190000, 0.200000, 0.207500, 0.220000, 0.207500, 0.222500, 0.232500, 0.257500, 0.275000, 0.285000, 0.312500, 0.357500
  262. #*# 0.260000, 0.232500, 0.207500, 0.185000, 0.162500, 0.177500, 0.185000, 0.185000, 0.167500, 0.155000, 0.130000, 0.115000, 0.082500, 0.055000, 0.035000, 0.030000, 0.025000, 0.012500, 0.020000, 0.007500, 0.037500, 0.047500, 0.065000, 0.067500, 0.065000, 0.057500, 0.060000, 0.035000, 0.025000, 0.027500, 0.030000, 0.037500, 0.045000, 0.062500, 0.080000, 0.115000, 0.142500, 0.180000, 0.192500, 0.192500, 0.202500, 0.212500, 0.215000, 0.212500, 0.227500, 0.255000, 0.270000, 0.295000, 0.315000, 0.362500
  263. #*# 0.272500, 0.242500, 0.202500, 0.207500, 0.167500, 0.175000, 0.180000, 0.175000, 0.175000, 0.157500, 0.142500, 0.127500, 0.085000, 0.057500, 0.032500, 0.037500, 0.025000, 0.007500, 0.017500, 0.005000, 0.035000, 0.045000, 0.067500, 0.062500, 0.067500, 0.060000, 0.057500, 0.032500, 0.022500, 0.020000, 0.032500, 0.040000, 0.037500, 0.060000, 0.077500, 0.115000, 0.147500, 0.177500, 0.190000, 0.207500, 0.197500, 0.210000, 0.222500, 0.217500, 0.227500, 0.252500, 0.267500, 0.290000, 0.315000, 0.357500
  264. #*# 0.260000, 0.230000, 0.190000, 0.170000, 0.152500, 0.165000, 0.170000, 0.160000, 0.155000, 0.142500, 0.132500, 0.105000, 0.072500, 0.050000, 0.030000, 0.025000, 0.017500, 0.010000, 0.010000, 0.017500, 0.032500, 0.040000, 0.060000, 0.060000, 0.057500, 0.060000, 0.055000, 0.037500, 0.022500, 0.017500, 0.022500, 0.032500, 0.037500, 0.055000, 0.072500, 0.125000, 0.152500, 0.180000, 0.190000, 0.205000, 0.200000, 0.227500, 0.212500, 0.217500, 0.230000, 0.245000, 0.275000, 0.300000, 0.322500, 0.360000
  265. #*# 0.235000, 0.205000, 0.165000, 0.162500, 0.135000, 0.142500, 0.152500, 0.140000, 0.145000, 0.127500, 0.110000, 0.095000, 0.060000, 0.035000, 0.012500, 0.007500, -0.000000, 0.005000, -0.005000, -0.012500, 0.022500, 0.032500, 0.052500, 0.047500, 0.057500, 0.047500, 0.050000, 0.030000, 0.015000, 0.022500, 0.025000, 0.032500, 0.042500, 0.060000, 0.075000, 0.125000, 0.155000, 0.185000, 0.190000, 0.215000, 0.205000, 0.217500, 0.227500, 0.225000, 0.242500, 0.262500, 0.287500, 0.310000, 0.335000, 0.377500
  266. #*# x_count = 50
  267. #*# y_count = 50
  268. #*# mesh_x_pps = 2
  269. #*# mesh_y_pps = 2
  270. #*# algo = bicubic
  271. #*# tension = 0.2
  272. #*# min_x = 0.0
  273. #*# max_x = 222.95
  274. #*# min_y = 0.0
  275. #*# max_y = 188.65
  276. #*#
  277. #*# [bltouch]
  278. #*# z_offset = 3.970
Advertisement
Add Comment
Please, Sign In to add comment