Autocommit from 2025-03-16 16:36:41

Klipper version: v0.12.0-382-ga18c74be0

Moonraker version: v0.9.3-3-gccfe32f

Mainsail version: v2.13.2
This commit is contained in:
2025-03-16 16:36:41 +03:00
parent 5b07fda880
commit 10a24aa797
5 changed files with 18 additions and 28 deletions

View File

@@ -1,9 +1,9 @@
[gcode_shell_command backup_cfg]
command: ~/printer_data/config/autocommit.sh
timeout: 30
verbose: True
[gcode_shell_command backup_cfg]
command: sh /home/biqu/printer_data/config/autocommit.sh
timeout: 30
verbose: True
[gcode_macro BACKUP_CFG]
description: Backs up config directory GitHub
gcode:
[gcode_macro BACKUP_CFG]
description: Backs up config directory GitHub
gcode:
RUN_SHELL_COMMAND CMD=backup_cfg

View File

@@ -527,22 +527,6 @@ gcode:
# Restore previous gcode state (absolute/relative, etc)
RESTORE_GCODE_STATE NAME=TEST_SPEED
[gcode_macro test]
gcode:
{% set iterations = params.ITERATIONS|default(5)|int %}
;G32
SAVE_GCODE_STATE NAME=TEST
G1 Z10
;SET_VELOCITY_LIMIT ACCEL=8000
SET_VELOCITY_LIMIT ACCEL=10000 SQUARE_CORNER_VELOCITY=12
{% for i in range(iterations) %}
G1 F18000
G1 X300 Y300
G1 X150 Y50
{% endfor %}
SET_VELOCITY_DEFAULT
RESTORE_GCODE_STATE NAME=TEST
[gcode_macro _bot_data]
variable_lapse_video_size: 0

Binary file not shown.

View File

@@ -129,7 +129,7 @@ pid_kd: 278.281
[probe]
x_offset: 0
y_offset: 0
#z_offset: -0.825
z_offset: -0.890
lift_speed: 15 #10
speed: 3.0 #5
samples: 3
@@ -207,9 +207,6 @@ algorithm: bicubic
#*# xz_skew = 0.0
#*# yz_skew = 0.0
#*#
#*# [probe]
#*# z_offset = -0.890
#*#
#*# [bed_mesh default]
#*# version = 1
#*# points =
@@ -226,3 +223,5 @@ algorithm: bicubic
#*# max_x = 217.19799999999998
#*# min_y = 146.587
#*# max_y = 202.78699999999998
[include shell_command.cfg]

7
shell_command.cfg Normal file
View File

@@ -0,0 +1,7 @@
[gcode_shell_command hello_world]
command: echo hello world
timeout: 2.
verbose: True
[gcode_macro HELLO_WORLD]
gcode:
RUN_SHELL_COMMAND CMD=hello_world