Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##################Creality Ender 3 S1 Klipper Config - 3DPrintBeginner###################
- ######Full guide: https://3dprintbeginner.com/how-to-install-klipper-on-ender-3-s1/######
- [include timelapse.cfg]
- [stepper_x]
- step_pin: PC2
- dir_pin: PB9
- enable_pin: !PC3
- microsteps: 16
- rotation_distance: 40
- endstop_pin: !PA5
- position_endstop: -4
- position_min: -4
- position_max: 255
- homing_speed: 50
- [stepper_y]
- step_pin: PB8
- dir_pin: PB7
- enable_pin: !PC3
- microsteps: 16
- rotation_distance: 40
- endstop_pin: !PA6
- position_endstop: -2
- position_min: -2
- position_max: 230
- homing_speed: 50
- [stepper_z]
- step_pin: PB6
- dir_pin: !PB5
- enable_pin: !PC3
- microsteps: 16
- rotation_distance: 8
- endstop_pin: probe:z_virtual_endstop
- position_max: 270
- position_min: -5
- [extruder]
- max_extrude_only_distance: 100.0
- max_extrude_cross_section: 50
- step_pin: PB4
- dir_pin: PB3
- enable_pin: !PC3
- microsteps: 16
- rotation_distance: 7.6190
- nozzle_diameter: 0.400
- filament_diameter: 1.750
- heater_pin: PA1
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: PC5
- control: pid
- pid_Kp: 22.865
- pid_Ki: 1.292
- pid_Kd: 101.178
- min_temp: 0
- max_temp: 250
- pressure_advance = 0.1
- [input_shaper]
- shaper_freq_x: 40 # frequency for the X mark of the test model
- shaper_freq_y: 50 # frequency for the Y mark of the test model
- shaper_type: mzv
- [filament_switch_sensor RunoutSensor]
- pause_on_runout: False
- runout_gcode: PAUSE
- insert_gcode: RESUME
- switch_pin: !PC15
- [heater_bed]
- heater_pin: PA7
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: PC4
- control: pid
- pid_Kp: 69.139
- pid_Ki: 1.273
- pid_Kd: 938.565
- min_temp: 0
- max_temp: 130
- [heater_fan hotend_fan]
- pin: PC0
- heater: extruder
- heater_temp: 50.0
- [fan]
- pin: PA0
- [mcu]
- serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
- restart_method: command
- [printer]
- kinematics: cartesian
- max_velocity: 500
- max_accel: 1500
- max_accel_to_decel: 1500
- max_z_velocity: 5
- square_corner_velocity: 5.0
- max_z_accel: 100
- [bltouch]
- sensor_pin: ^PC14
- control_pin: PC13
- x_offset: -32
- y_offset: -41
- #z_offset: 2.80
- speed:10
- samples:1
- samples_result:average
- probe_with_touch_mode: true
- stow_on_each_sample: false
- [safe_z_home]
- home_xy_position: 154,154
- speed: 100
- z_hop: 10
- z_hop_speed: 5
- [bed_mesh]
- speed: 100
- mesh_min: 0, 0
- mesh_max: 223, 189
- algorithm: bicubic
- probe_count: 50,50
- [temperature_sensor Board_MCU]
- sensor_type: temperature_mcu
- min_temp: 0
- max_temp: 100
- [temperature_sensor Raspberry_Pi]
- sensor_type: temperature_host
- min_temp: 0
- max_temp: 100
- [virtual_sdcard]
- path: ~/gcode_files
- [display_status]
- [pause_resume]
- [gcode_macro PAUSE]
- description: Pause the actual running print
- rename_existing: PAUSE_BASE
- # change this if you need more or less extrusion
- variable_extrude: 1.0
- gcode:
- ##### read E from pause macro #####
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- ##### set park positon for x and y #####
- # default is your max posion from your printer.cfg
- {% set x_park = printer.toolhead.axis_minimum.x|float + 5.0 %}
- {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
- ##### calculate save lift position #####
- {% set max_z = printer.toolhead.axis_maximum.z|float %}
- {% set act_z = printer.toolhead.position.z|float %}
- {% if act_z < (max_z - 2.0) %}
- {% set z_safe = 2.0 %}
- {% else %}
- {% set z_safe = max_z - act_z %}
- {% endif %}
- ##### end of definitions #####
- PAUSE_BASE
- G91
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G1 E-{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- {% if "xyz" in printer.toolhead.homed_axes %}
- G1 Z{z_safe} F900
- G90
- G1 X{x_park} Y{y_park} F6000
- {% else %}
- {action_respond_info("Printer not homed")}
- {% endif %}
- [gcode_macro RESUME]
- description: Resume the actual running print
- rename_existing: RESUME_BASE
- gcode:
- ##### read E from pause macro #####
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- #### get VELOCITY parameter if specified ####
- {% if 'VELOCITY' in params|upper %}
- {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
- {%else %}
- {% set get_params = "" %}
- {% endif %}
- ##### end of definitions #####
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G91
- G1 E{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- RESUME_BASE {get_params}
- [gcode_macro CANCEL_PRINT]
- description: Cancel the actual running print
- rename_existing: CANCEL_PRINT_BASE
- gcode:
- TURN_OFF_HEATERS
- CANCEL_PRINT_BASE
- #*# <---------------------- SAVE_CONFIG ---------------------->
- #*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
- #*#
- #*# [bed_mesh default]
- #*# version = 1
- #*# points =
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# 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
- #*# x_count = 50
- #*# y_count = 50
- #*# mesh_x_pps = 2
- #*# mesh_y_pps = 2
- #*# algo = bicubic
- #*# tension = 0.2
- #*# min_x = 0.0
- #*# max_x = 222.95
- #*# min_y = 0.0
- #*# max_y = 188.65
- #*#
- #*# [bltouch]
- #*# z_offset = 3.970
Advertisement
Add Comment
Please, Sign In to add comment