Skip to content

Commit a00fad4

Browse files
committedMar 1, 2025
fix(macros): Shorten felt y range
1 parent 0cf0167 commit a00fad4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎config/gcode_macro.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ gcode:
7878
{% set random_x = (range(0, 100) | random) / 10 %}
7979
{% set X_end = 60 + random_x %}
8080

81-
{% set random_y = (range(0, 40) | random) / 10 %}
81+
{% set random_y = (range(0, 30) | random) / 10 %}
8282
{% set Y_end = 254 - random_y %}
8383
G1 Y{Y_end} F1500
8484

0 commit comments

Comments
 (0)
Please sign in to comment.