From d9cbdb2c69c2847170ba773bb188c8d4c32bcef4 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Thu, 24 Feb 2022 11:14:08 +0100 Subject: [PATCH] feat: add mockup bed mesh data to printer.cfg --- example-configs/printer.cfg | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/example-configs/printer.cfg b/example-configs/printer.cfg index 239e739..35f70a8 100644 --- a/example-configs/printer.cfg +++ b/example-configs/printer.cfg @@ -165,6 +165,17 @@ pwm: false shutdown_value: 0 value: 1 +############################################ +### BED MESH ### +############################################ + +[bed_mesh] +speed: 120 +horizontal_move_z: 5 +mesh_min: 10, 10 +mesh_max: 190, 190 +probe_count: 5, 5 + ############################################ ### MACROS ### ############################################ @@ -219,4 +230,27 @@ gcode: [gcode_macro M190] rename_existing: M190.1 gcode: - M117 M190 called with {rawparams} \ No newline at end of file + M117 M190 called with {rawparams} + +#*# <---------------------- SAVE_CONFIG ----------------------> +#*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated. +#*# +#*# [bed_mesh default] +#*# version = 1 +#*# points = +#*# 0.075000, 0.069792, 0.062708, 0.044167, 0.032917 +#*# 0.045417, 0.043958, 0.066042, 0.053333, 0.038750 +#*# 0.034375, 0.023333, 0.032917, 0.054167, 0.043542 +#*# 0.076042, 0.056458, 0.066250, 0.045000, 0.057292 +#*# 0.051875, 0.036875, 0.030000, 0.020625, 0.043125 +#*# tension = 0.2 +#*# min_x = 10 +#*# algo = bicubic +#*# y_count = 5 +#*# mesh_y_pps = 5 +#*# min_y = 10.0 +#*# x_count = 5 +#*# max_y = 190 +#*# mesh_x_pps = 5 +#*# max_x = 190 +#*# \ No newline at end of file