aboutsummaryrefslogtreecommitdiffstats
path: root/config/example-extras.cfg
Commit message (Collapse)AuthorAgeFilesLines
...
* gcode_macro: Support overriding of builtin g-code commandsKevin O'Connor2020-02-121-0/+7
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* homing_heaters: Turn off heaters during homing/probing (#2486)FanDjango2020-02-121-0/+12
| | | Signed-off-by: Mike Stiemke <fandjango@gmx.de>
* probe: Add support for configuring lift_speedKevin O'Connor2020-01-311-0/+4
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: add BME280 documentationArksine2020-01-131-0/+21
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* docs: Update documentation to reflect bed_mesh changesArksine2020-01-091-16/+22
| | | | | | Also add new bed_mesh.md documentation. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* gcode: Fix detection of some "extended" g-code commandsKevin O'Connor2020-01-071-10/+6
| | | | | | | Fix typo that resulted in _get_extended_params() being called for all commands. Allow "extended" g-code commands to contain numbers. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* extruder_stepper: Initial support for synchronized extruder steppersSimo Apell2020-01-061-0/+14
| | | | | Signed-off-by: Simo Apell <simo.apell@live.fi> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Updates for gcode_macro naming (#2317)David Smith2020-01-061-4/+10
| | | | | Add note about numbers in macro names. Add note about variable name case restriction. Add set variable example. Signed-off-by: David O Smith <davidosmith@gmail.com>
* display: Revert "display: Add ST7567 display support (#1540)"Kevin O'Connor2019-12-181-8/+3
| | | | | | | | | This reverts commit 1b92af60784ea811a7ca04dfbce75224874cf84a. The standard "uc1701" lcd_type can now be used in place of the custom "st7567" lcd_type. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Minor wording change in example-extras.cfgKevin O'Connor2019-12-161-1/+1
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Update example-extras.cfg - extruder.activate_gcode was removedKevin O'Connor2019-12-161-4/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* gcode: Remove builtin T0/T1/T2/... command supportKevin O'Connor2019-12-101-13/+0
| | | | | | | | 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>
* config: Add example for including a parameter in a macro call (#2251)David Smith2019-12-101-3/+5
| | | | | Add description to default_parameter of g-code macro description of method to call macro with a non-default value. Signed-off-by: David Smith <davidosmith@gmail.com>
* uc1701: Add support for rst_pinKevin O'Connor2019-12-021-2/+4
| | | | | | | Add support for an optional uc1701 rst_pin. Use the same reset pin code handling with the SSD1306 code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Minor comment changes to example-extras.cfgKevin O'Connor2019-11-281-13/+13
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* uc1701: add config option for sh1106 type with up to 132 columns.Matt Baker2019-11-261-1/+1
| | | | Signed-off-by: Matt Baker <baker.matt.j@gmail.com>
* tmc: Remove virtual_enable support and replace with automatic supportKevin O'Connor2019-11-121-20/+5
| | | | | | | Automatically detect if the stepper has a dedicated enable line. If it does not, then automatically enable virtual enable support. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* buttons: Remove MCU_ADC_buttons debug capabilityKevin O'Connor2019-11-071-4/+0
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Only document thermistors in example.cfgKevin O'Connor2019-10-271-79/+74
| | | | | | | | | Move the common temperature amplifier config descriptions to example-extras.cfg. Also, minor changes to wording of some example-extra.cfg sections. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* adc_temperature: add support for AD849x thermocouple amplifiers (#1994)Geoff Shannon2019-10-101-0/+18
| | | Signed-off-by: Geoff Shannon <geoffpshannon@gmail.com>
* safe_z_home: Fix unintended change in default behaviorMaster922019-10-031-2/+2
| | | | | | PR #1970 introduced a new parameter, controlling the default behavior of the safe_z_home-module. To avoid unexpected changes, the default of the move_to_previous is now defaulted to False. Signed-off-by: Nils Friedchen <Nils.Friedchen@googlemail.com>
* safe_z_home: Hop only if necessary and add option to move xy backMaster922019-09-181-1/+8
| | | | | | | | | | | | | | | Once a hop is performed, it will only be re-issued if the z-axis has been moved in the meantime. Usually it is only moved by a z-homing so doing so will cause safe_z_home to do the hop on the next homing action. When z-axis is homed, x and y positions are known. When setting this boolean option, these are set back to their last positions. Whenever a hop is specified it is re-issued after the Z axis has been homed. This is especially necessary when a pressure-based probe is used. Also, the module decides if a hop is necessary, based on either a known Z position or a flag that is set whenever the motors are disabled. Signed-off-by: Nils Friedchen <Nils.Friedchen@googlemail.com>
* config: Fix grammar and typos for the new arc config (#1968)Piotr Usewicz2019-09-181-4/+4
| | | Signed-off-by: Piotr Usewicz <piotr@layer22.com>
* config: Move sections around in example-extras.cfgKevin O'Connor2019-09-131-747/+775
| | | | | | | Move the sections around in example-extras.cfg to try and group like functionality together. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* gcode_arcs: Add support for G2/G3 commandsAleksej Vasiljkovic2019-09-131-0/+10
| | | | | | | | R Still missing, also might be somewhat dirty since code is converted into G1 commands. Signed-off-by: Aleksej Vasiljkovic <achmed21@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Note adc_voltage and pullup_resistance in adc_temperature moduleKevin O'Connor2019-09-111-3/+7
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* filament_switch_sensor: Add a delay between dispatch of pause and execution ↵Arksine2019-09-081-0/+5
| | | | | | of pause gcode Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* board_pins: Add a new "extras" module to support per-board pin aliasesKevin O'Connor2019-08-191-0/+13
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* tmc2209: Add support for sensorless homingKevin O'Connor2019-08-191-0/+7
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* uc1701: Add support for a reset line on SSD1306 displaysKevin O'Connor2019-08-171-0/+4
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Note that samples_tolerance can be used in the bltouch configKevin O'Connor2019-08-171-0/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for WS2811 RGB pixel color orderKevin O'Connor2019-08-091-0/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* extra: Add Safe Z home extraFlorian Heilmann2019-08-091-0/+19
| | | | Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
* dotstar: Initial support for "dotstar" LEDsKevin O'Connor2019-08-061-3/+20
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* tmc_uart: Add support for configuring the uart address on tmc2209 chipsKevin O'Connor2019-07-311-0/+4
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* mcp4728: Update to better match printrbot revf requirementsKevin O'Connor2019-07-261-8/+9
| | | | | | Reported by @Grumps49. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for daisy-chained chipsKevin O'Connor2019-07-231-0/+4
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add support for setting a default color at startupKevin O'Connor2019-07-231-0/+5
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* neopixel: Add initial support for "neopixel" ledsKevin O'Connor2019-07-121-0/+10
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* firmware_retract: Remove z_hop supportKevin O'Connor2019-07-101-3/+0
| | | | | | | | | | | | The current z_hop support did not work correctly with common slicers that change Z height between retract and unretract, and it did not work correctly with slicers that issue a retract at the end of a print and then at the beginning of the next print. The z_hop support is therefore being removed until these issues can be fixed. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Add documentation for [delayed_gcode]Arksine2019-07-011-0/+13
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* docs: Update for latest changs to skew_correctionArksine2019-06-291-18/+5
| | | | Signed-off-by: Eric Callahan <arksine.code@gmail.com>
* tmc: Add support for virtual enable pinsKevin O'Connor2019-06-281-5/+20
| | | | | | | Add support for enabling the stepper via the communication channel. This improves support for boards with a shared enable line. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* skew_correction: add documentationArksine2019-06-261-0/+22
| | | | Signed-Off-By: Eric Callahan <arksine.code@gmail.com>
* config: No need to list all tmc drivers in endstop_phase descriptionKevin O'Connor2019-06-231-3/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Update example-extras.cfg for tmc2209Kevin O'Connor2019-06-231-0/+36
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* gcode_button: Execute gcode when a button is pressed or released (#1745)Alec B. Plumb2019-06-211-0/+15
| | | | | | | An extra to execute gcode when a hardware button is pressed or released. Uses the jinja2 templating system. Inspired by pull request #545 from Miguel Moitinho miguel@moitinho.net and pull request #1098 from Paulo Drugos paulodrugos@gmail.com Signed-off-by: Alec Plumb <alec@etherwalker.com>
* probe: Add support for samples_toleranceKevin O'Connor2019-06-211-0/+12
| | | | | | Add a check on the maximum Z distance between probe samples. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* tmc2660: Don't allow configuration of DEDGEKevin O'Connor2019-06-181-1/+0
| | | | | | Setting DEDGE would just break the code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* z_tilt: Support retriesfess2019-06-181-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Support retrying Z_TILT_ADJUST a configurable number of times to a configurable tolerance both in the config or as parameters. - By default keeps original behavior of no retries. - Adds parameters RETRIES and RETRY_TOLERANCE to QUAD_GANTRY_LEVEL gcode. - adds config options retries and retry_tolerance to uad_gantry_level] - issues an error if we are getting worse intead of approaching tolerance - issues an error if retries were requested but we did not reach the tolerance in the specified number of retries the minimum change should be a single z step for those probing 2 points for 2 stepper motors and 3 for 3 stepper motors. at one point it was suggested to use the amount of z adjustment instead of the range of the probed points as a trigger for retry. I've chosen not to do this. using z adustment in these cases means the minimum unit of change is related to the angle created by the probed points and the distance to stepper motor and can be more than a couple steps which is rather unintuitive. for the case when someone is using more probed points than z steppers the probed points range will have some fixed minimum value that can't be reduced which is also unintuitive but that case should idealy be the rarer case, and the user can learn to set a higher tolerance that matches their probing setup. Signed-off-by: John "Fess" Fessenden <fess@fess.org>