Customizing Ananke - MadD0c/Ananke GitHub Wiki

All settings are available for customization. They can be changed using one of the following methods:

Console Command

SET_GCODE_VARIABLE MACRO=_defaultcfg VARIABLE=[Setting] VALUE=[Required Value]

This can not only be used to adjust settings on the fly, but also added to your slicer settings to adjust on a per print basis. Note if changed this way it will not persist post reboot or after completion of a print.

Added to printer.cfg

[gcode_macro _usercfg]
variable_audio_status: False
gcode: # This line is required by Klipper.

Adding settings here allows for persistence across reboots and prints. The prefex variable_ needs to be appended to the required setting and added under the line [gcode_macro _usercfg] as shown in the example above.