doom-micron/adxl.cfg
2023-12-02 00:55:09 +00:00

69 lines
1.8 KiB
INI
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# These macros require the gcode_shell_command extension.
# https://github.com/th33xitus/kiauh/blob/master/docs/gcode_shell_command.md
[respond]
[mcu ampon]
serial: /dev/serial/by-id/usb-Anchor_Ampon-if00
[adxl345]
cs_pin: ampon:CS
[resonance_tester]
accel_chip: adxl345
probe_points:
90,90,20
[gcode_macro LAZY_HOME]
gcode:
{% if printer.toolhead.homed_axes != "xyz" %}
M118 Homing axis
G28
{% endif %}
[gcode_macro ADXL_SHAPE_ALL]
description: Test resonances for both axis
gcode:
M118 DO NOT TOUCH THE PRINTER UNTIL DONE!!!
LAZY_HOME
SHAPER_CALIBRATE
RUN_SHELL_COMMAND CMD=adxl_shape_x
RUN_SHELL_COMMAND CMD=adxl_shape_y
M118 Test done
SAVE_CONFIG
[gcode_macro ADXL_SHAPE_X]
description: Test resonances for X axis
gcode:
M118 DO NOT TOUCH THE PRINTER UNTIL DONE!!!
LAZY_HOME
SHAPER_CALIBRATE AXIS=x
RUN_SHELL_COMMAND CMD=adxl_shape_x
M118 Test done
SAVE_CONFIG
[gcode_macro ADXL_SHAPE_Y]
description: Test resonances for Y axis
gcode:
M118 DO NOT TOUCH THE PRINTER UNTIL DONE!!!
LAZY_HOME
SHAPER_CALIBRATE AXIS=y
RUN_SHELL_COMMAND CMD=adxl_shape_y
M118 Test done
SAVE_CONFIG
[gcode_shell_command adxl_shape_x]
command: sh /home/kdb424/printer_data/config/shaper/adxl_shape_x.sh # edit: ´~/printer_data/config/shaper/´ to where your .sh file lays
timeout: 60.
verbose: True
[gcode_shell_command adxl_shape_y]
command: sh /home/kdb424/printer_data/config/shaper/adxl_shape_y.sh # edit: ´~/printer_data/config/shaper/´ to where your .sh file lays
timeout: 60.
verbose: True
### name file: adxl_shape_x.sh
#~/klipper/scripts/calibrate_shaper.py /tmp/calibration_data_x_*.csv -o ~/printer_data/config/shaper_calibrate_x.png
### name file: adxl_shape_y.sh
#~/klipper/scripts/calibrate_shaper.py /tmp/calibration_data_y_*.csv -o ~/printer_data/config/shaper_calibrate_y.png