aboutsummaryrefslogtreecommitdiffstats
path: root/docs/G-Codes.md
Commit message (Collapse)AuthorAgeFilesLines
* temperature_fan: Add MAX_SPEED and MIN_SPEED to SET_TEMPERATURE_FAN_TARGET ↵Lane Roberts2021-02-021-2/+2
| | | | | | | command (#3873) Allows setting min_speed and max_speed at runtime, rather than updating the config and restarting. Signed-off-by Lane Roberts <nolatari@vandarin.net>
* resonance_tester: Disable input shaping for resonance testingDmitry Butyugin2021-02-021-6/+9
| | | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* adxl345: Add accelerometer chip name to the raw data file nameDmitry Butyugin2021-02-021-4/+7
| | | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* heaters: Make MINIMUM optional for TEMPERATURE_WAIT command (#3674)Justin Schuh2020-12-241-3/+3
| | | Signed-off-by: Justin Schuh <code@justinschuh.com>
* heaters: Add MAXIMUM option to TEMPERATURE_WAIT commandJustin Schuh2020-12-231-2/+3
| | | | Signed-off-by: Justin Schuh <code@justinschuh.com>
* docs: Limiting max_smoothing for input shaper autocalibrationDmitry Butyugin2020-12-221-7/+11
| | | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* stepper: Calculate step_distance from rotation_distanceKevin O'Connor2020-12-181-2/+4
| | | | | | | | Add support for automatically calculating the internal step_distance from new config parameters - rotation_distance, microsteps, full_steps_per_rotation, and gear_ratio. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* heaters: Add a TEMPERATURE_WAIT commandKevin O'Connor2020-12-071-0/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* save_variables: Support saving variables to a disk fileKevin O'Connor2020-12-031-0/+11
| | | | | Signed-off-by: Dushyant Ahuja dusht.ahuja@gmail.com Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* G-Codes: Minor formatting fixKevin O'Connor2020-11-231-2/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Add more links to G-Codes.mdKevin O'Connor2020-11-231-192/+233
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Move config reference information to new Config_Reference.mdKevin O'Connor2020-11-181-14/+14
| | | | | | | Move all the config reference information from files in the config/ directory to a new Config_Reference.md document. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for RGBW LEDsKevin O'Connor2020-10-291-2/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* resonance_tester: Resonance testing and input shaper auto-calibration (#3381)Dmitry Butyugin2020-10-141-6/+45
| | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* mcu: Add support for changing cycle_time in set_pwm()Kevin O'Connor2020-09-261-1/+4
| | | | | Signed-off-by: Guy Shapira <gayuha@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: document additions to BED_MESH_CALIBRATEArksine2020-09-151-1/+2
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* docs: Note that FORCE_MOVE can lead to "No next step" errors in G-Codes.mdKevin O'Connor2020-09-081-7/+9
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* adxl345: Add support for adxl345 accelerometerKevin O'Connor2020-09-051-0/+14
| | | | | | | Add support for taking measurements from an adxl345 accelerometer via SPI interface. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* fan_generic: Add support for named fans and gcode to control them (#3054)bondus2020-08-071-0/+7
| | | Signed-off-by: Pontus Borg <liquidpontus@yahoo.se>
* docs: document changes to the virtual_sdcard moduleArksine2020-08-051-0/+5
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* docs: Move SET_TEMPERATURE_FAN_TARGET to its own section in G-Codes.mdKevin O'Connor2020-07-261-2/+9
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Update G-Codes.md for SET_TEMPERATURE_FAN_TARGET (#3122)Martin Nowroth2020-07-261-0/+2
| | | | | Added extended G-Code documentation for SET_TEMPERATURE_FAN_TARGET Signed-off-by: Martin Nowroth <madnoth@gmail.com>
* servo: Remove servo ENABLE parameterKevin O'Connor2020-07-251-2/+3
| | | | | | | Allow one to disable servos via `SET_SERVO WIDTH=0` instead of using an explicit ENABLE parameter. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* input_shaper: Initial support of input shaping (#3032)Dmitry Butyugin2020-07-051-0/+15
| | | | | | Input shaping can help to reduce printer vibrations due to resonances and eliminate or reduce ghosting in prints. Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* display: Default DISPLAY=display in SET_DISPLAY_GROUP commandKevin O'Connor2020-06-091-5/+6
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: add SET_DISPLAY_GROUP command (#2969)Florian Heilmann2020-06-091-0/+5
| | | Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
* extruder_stepper: Support changing synced extruder on the fly (#2824)theophile2020-06-061-0/+9
| | | Signed-off-by: Christopher Meredith <chmeredith@gmail.com>
* docs: Clarify that Probe_Calibrate uses the speed variable for XY as well ↵Dushyant Ahuja2020-05-051-1/+3
| | | | | (#2735) Signed-off-by: Dushyant Ahuja <dusht.ahuja@gmail.com>
* Extruder: Add g-code to set extruder step_distance (#2598)David Smith2020-03-281-0/+6
| | | Signed off by: David Smith <davidosmith@gmail.com>
* docs: Fix typo in MANUAL_STEPPER command lineKevin O'Connor2020-03-231-1/+1
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* Allow manual_stepper to run in parallel than an other stepperJeremy Briffaut2020-03-231-12/+16
| | | | | Signed-off-by: Jeremy Briffaut <kakou@kakou.org> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: clarify behavior of M204 with only one of P or T (#2564)Garth Snyder2020-03-111-1/+2
| | | Signed-off-by: Garth Snyder <garth@garthsnyder.com>
* bltouch: BTLOUCH V3.0/V3.1 Enable 5V/OD mode set commands (#2540)FanDjango2020-02-231-1/+8
| | | Signed-off-by: Mike Stiemke <fandjango@gmx.de>
* manual_stepper: Support ignoring errors on STOP_ON_ENDSTOPKevin O'Connor2020-02-191-7/+8
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* stepper_enable: Add SET_STEPPER_ENABLE gcode command (#2463)David Smith2020-02-101-0/+6
| | | Signed-off-by: David Smith <davidosmith@gmail.com>
* probe: Add support for configuring lift_speedKevin O'Connor2020-01-311-1/+1
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Update documentation to reflect bed_mesh changesArksine2020-01-091-9/+9
| | | | | | Also add new bed_mesh.md documentation. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* docs: Document support for M204 P and T parametersKevin O'Connor2019-12-181-1/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for delaying updates in SET_LED commandKevin O'Connor2019-12-151-7/+10
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* gcode: Remove builtin T0/T1/T2/... command supportKevin O'Connor2019-12-101-2/+1
| | | | | | | | The builtin Tn command is not sufficiently flexible to control some multi-extruder printers. Remove the command and encourage users to define individual gcode_macros for each Tn instance. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* extruder: Add an ACTIVATE_EXTRUDER commandKevin O'Connor2019-12-101-0/+3
| | | | | | | Add support for an extended g-code command to change the currently active extruder. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* gcode: Remove support for the M206 commandKevin O'Connor2019-12-101-2/+0
| | | | | | | | The M206 command isn't particularly standardized and isn't issued by default from 3rd party software in their standard configurations. Encourage users to use the more powerful SET_GCODE_OFFSET command. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* extruder: Initial support for "smoothed pressure advance"Kevin O'Connor2019-11-211-3/+3
| | | | | | | Support averaging the extruder position over a time range to "smooth out" the velocity changes that occur during pressure advance. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* query_adc: Add a new module to help query and debug analog pinsKevin O'Connor2019-11-071-0/+5
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Note gcode_arcs and firmware_retraction commands in G-Codes.mdKevin O'Connor2019-11-071-2/+16
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Update Sensorless_Homing.md with new TMCs (#1958)Nils Schulte2019-10-031-4/+3
| | | Signed-off-by: Nils Schulte <git@nilsschulte.de>
* tuning_tower: Tool for tuning parameters based on print Z heightKevin O'Connor2019-10-011-0/+8
| | | | | | | This adds a testing tool that can run a command on each Z layer of a print. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* dotstar: Initial support for "dotstar" LEDsKevin O'Connor2019-08-061-10/+10
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for daisy-chained chipsKevin O'Connor2019-07-231-3/+7
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add initial support for "neopixel" ledsKevin O'Connor2019-07-121-0/+8
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>