Skip to content

Commit

Permalink
Merge pull request #605 from ningpj/main
Browse files Browse the repository at this point in the history
Warn if user defined accels exceed max_accels defined for the printer.
  • Loading branch information
Dendrowen authored Jan 23, 2025
2 parents be28ad3 + d1155de commit d96fe2c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion config/addons/blobifier.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,13 @@ gcode:
{action_respond_info("BLOBIFIER: variable_z_raise_exp has value: %f. This value is out of spec (0.5 ... 1.0)." % (bl.z_raise))}
{% endif %}


# cap user defined accels at printer max_accel if greater
{% if bl.shake_accel > printer.configfile.config.printer.max_accel|int %}
{action_respond_info("BLOBIFIER: variable_shake_accel has value: %d which is higher than your printer limit of %d. Reduce this if your printer skips steps." % (bl.shake_accel,printer.configfile.config.printer.max_accel|int))}
{% endif %}
{% if bl.brush_accel > printer.configfile.config.printer.max_accel|int %}
{action_respond_info("BLOBIFIER: variable_brush_accel has value: %d which is higher than your printer limit of %d. Reduce this if your printer skips steps." % (bl.brush_accel,printer.configfile.config.printer.max_accel|int))}
{% endif %}

[delayed_gcode BLOBIFIER_LOAD_STATE]
initial_duration: 2.0 # Give it some time to boot up
Expand Down

0 comments on commit d96fe2c

Please sign in to comment.