12345678910111213141516171819202122 |
- # G1 [X<pos>] [Y<pos>] [Z<pos>] [E<pos>] [F<speed>]
- # M106 # Fan On
- # M107 # Fan Off
- # M117 <message>
- # M112 # Emergency stop
- # M114 # Get current position
- # M115 # Get firmware version
- # M300 # Play beep sound
- # M400 # Wait for current moves to finish
- # M900 # Set Linear Advance Scaling Factors
- # SET_DUAL_CARRIAGE CARRIAGE=[0|1]
- # SET_GCODE_OFFSET [X=<value>] [Y=<value>] [Z=<value>]
- ################################################################################
- ################################################################################
- #[gcode_macro M92]
- #description: Set axis_steps_per_unit
- #gcode:
- # {% set extruder_steps = params.E|default(0.0025)|float %}
- # SET_EXTRUDER_STEP_DISTANCE DISTANCE={ extruder_steps } # "SET_EXTRUDER_STEP_DISTANCE" depricated and removed; replace with "SET_EXTRUDER_ROTATION_DISTANCE"
|