Skip to content

Instantly share code, notes, and snippets.

@rootiest
Last active January 31, 2025 19:30
Show Gist options
  • Save rootiest/f7ff365bd9f4d50c401dd46f4285cf63 to your computer and use it in GitHub Desktop.
Save rootiest/f7ff365bd9f4d50c401dd46f4285cf63 to your computer and use it in GitHub Desktop.
Nevermore SET_MATERIAL
# Set Material-specific Nevermore Speed
#
# Add this immediately after your start_print line of the start gcode in Prusa/SuperSlicer:
# SET_NEVERMORE MATERIAL='{filament_type[initial_extruder]}'
#
# Add this immediately after your start_print line of the start gcode in Cura:
# SET_NEVERMORE MATERIAL='{material_type}'
#
[gcode_macro SET_NEVERMORE]
gcode:
{% set MATERIAL = params.MATERIAL|default('PLA')|string %}
{% if MATERIAL == 'ABS' or MATERIAL == 'ABS+' or MATERIAL == 'ASA' %}
# Enable Nevermore
SET_FAN_SPEED FAN=nevermore SPEED=1.0
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment