aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Config_Reference.md
Commit message (Collapse)AuthorAgeFilesLines
* replicape: Don't require a host alias for the enable_pin defaultKevin O'Connor2021-03-251-2/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* bme280: Add support for BMP280 and BME680 sensors (#4040)Michael Kurz2021-03-151-6/+6
| | | | | | | | | This adds support for BMP280 and BME680 sensor ICs, along with fixing calibration data readout for BME280. Gas sensor readout for the BME680 is just the raw compensated value. To get actual meaningful values, more research is needed. Signed-off-by: Michael Kurz <michi.kurz@gmail.com>
* filament_motion_sensor: Add filament_motion_sensor (#3857)TheJoshW2021-03-141-0/+28
| | | | | Add functionality to support a Filament Motion Sensor for detecting extruder jams as well as runouts. Works by an encoder toggling the switch_pin 0/1 as the filament is pulled through the sensor. Signed-off-by: Joshua Wherrett <thejoshw.code@gmail.com>
* mcu: Add support for connecting to devices on a CAN busKevin O'Connor2021-03-131-1/+8
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Rename Sensorless_homing.md to TMC_Drivers.md and extendKevin O'Connor2021-03-101-4/+6
| | | | | | Add additional information on configuring and using TMC drivers. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* tmc2660: Do not enable SFILT by defaultKevin O'Connor2021-03-101-1/+1
| | | | | | | None of the other TMC driver enable SFILT by default and it seems enabling SFILT may not be ideal for sensorless homing. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* st7920: Better support for emulated ST7920 displays (#3979)teeminus2021-03-011-3/+15
| | | | | Added new ST7920E display driver which is better suited for displays with emulated ST7920 Signed-off-by: Christian Kehe <teeminus@posteo.net>
* fan: Add tachometer supportAdrian Keet2021-03-011-0/+25
| | | | | | | | | | | | | | This adds new config options for fans: 'tachometer_pin' to specify the GPIO pin, and 'tachometer_ppr' (default 2) to specify the number of signal pulses per revolution. The rpm is also exposed by get_status for command templates and the API server. For fast fans (at least 10000 RPM), the polling interval can be shortened using the 'tachometer_poll_interval' option. There is a new mcu object for a generic edge counter, which repeatedly polls a GPIO pin and periodically reports the count to the host. Signed-off-by: Adrian Keet <arkeet@gmail.com>
* tmc2130: Add spi daisy chain supportMarco D'Alessio2021-02-261-0/+12
| | | | | | | | This patch adds the ability to daisy-chain multiple tmc2130 and tmc5160 drivers. Signed-off-by: Marco D'Alessio <marco@wrecklab.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Use BME280 (uppercase) in Config_Reference.md (#3896)Stefan Dej2021-02-221-2/+2
| | | Signed-off-by: Stefan Dej <meteyou@gmail.com>
* temperature_host: Rename "path" config to "sensor_path"Kevin O'Connor2021-02-201-1/+1
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_host: Rename rpi_temperature and add support for custom pathsEvgenii2021-02-191-3/+7
| | | | | Signed-off-by: Evgenii Shavrin <shavrin0591@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* ds18b20: new module for 1-wire temperature sensor (#3462)Alan Lord2021-02-021-0/+17
| | | | | | | | | Initial commit of code to support 1-wire (Dallas) sensors such as the DS18B20. Requires Linux kernel drivers to create a file in /sysfs which is read by this module, and temperature typically returned to a temperature_fan. Signed-off-by: Alan Lord <alanslists@gmail.com> Signed-off-by: Josh Headapohl <joshhead@gmail.com>
* hd44780: Add hd44780 protocol init configThomas Kroll2021-01-311-0/+5
| | | | | | | LDO OLED needs a different init string. Fixes: #3722 Signed-off-by: Thomas Kroll <t.kroll@outlook.com>
* docs: Limiting max_smoothing for input shaper autocalibrationDmitry Butyugin2020-12-221-1/+8
| | | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* docs: Add a Rotation_Distance.md documentKevin O'Connor2020-12-181-0/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* endstop_phase: Obtain phases directly from stepper microsteps configKevin O'Connor2020-12-181-9/+5
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* stepper: Calculate step_distance from rotation_distanceKevin O'Connor2020-12-181-38/+43
| | | | | | | | 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>
* docs: Input Shaper and Resonances docs improvements (#3627)Dmitry Butyugin2020-12-171-3/+3
| | | Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
* bltouch: Recommend using a pullup on the sensor_pinKevin O'Connor2020-12-111-2/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_mcu: Add enhanced support for monitoring mcu temperatureKevin O'Connor2020-12-101-0/+34
| | | | | | | Add a "temperature_mcu" tool that can monitor builtin micro-controller temperature sensors. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Improve spi and i2c description in Config_Reference.mdKevin O'Connor2020-12-081-50/+88
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Minor wording change to thermistors in Config_Reference.mdKevin O'Connor2020-12-071-6/+7
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Group temperature sensors together in Config_Reference.mdKevin O'Connor2020-12-051-160/+155
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Move micro-controller information together in Config_Reference.mdKevin O'Connor2020-12-051-48/+46
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Add links to default display.cfg and menu.cfg in Config_Reference.mdKevin O'Connor2020-12-031-0/+12
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Use relative links for files outside the docs/ directoryKevin O'Connor2020-12-031-41/+29
| | | | | | | | Use javascript to fixup the "github pages" rendering of links to files outside the docs/ directory. Then use normal relative links in the documentation. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* rpi_temperature: Don't read min_temp/max_temp directly from configKevin O'Connor2020-12-031-8/+0
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* rpi_temperature: New module to monitor RPi temperature (#3587)Al2020-12-031-0/+21
| | | | | Module to monitor RPi cpu temperature Signed-off-by: Al Crate <aleph@al3ph.org>
* save_variables: Support saving variables to a disk fileKevin O'Connor2020-12-031-0/+14
| | | | | Signed-off-by: Dushyant Ahuja dusht.ahuja@gmail.com Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* menu: modifications (#3262)Janar Sööt2020-12-031-0/+5
| | | | | | | | | - remove lot of helper methods - differentiate class instantiate from config or directly - don't use 'enable' template rendering when static value is used. - new element 'disabled' - other internal adjustments Signed-off-by: Janar Sööt <janar.soot@gmail.com>
* docs: Clean up example values in Config_Reference.mdKevin O'Connor2020-12-021-41/+41
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Add additional command reference links to Config_Reference.mdKevin O'Connor2020-11-231-2/+5
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* hd44780: allow to configure line length (#3543)Martin Hierholzer2020-11-201-0/+4
| | | | | This allows to use 16x4 displays rather than only 20x4. Signed-off-by: Martin Hierholzer <hier@beta-centauri.de>
* docs: Add some additional links to Config_Reference.mdKevin O'Connor2020-11-201-8/+12
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Fix quad_gantry_level header in Config_Reference.mdKevin O'Connor2020-11-201-0/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Add more links to Config_Reference.mdKevin O'Connor2020-11-201-33/+95
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* board_pins: Use an explicit parameter to specify mcu name(s)Kevin O'Connor2020-11-201-6/+10
| | | | | | | | | | | Add an 'mcu' option to the board_pins config and use that to specify the name of the mcu to apply the aliases to. Support applying the aliases to multiple mcus. Add support for any number of options starting with an "aliases_" prefix. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Move replicape reference from generic-replicate.cfg to Config_Reference.mdKevin O'Connor2020-11-201-1/+56
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Move config reference information to new Config_Reference.mdKevin O'Connor2020-11-181-0/+3400
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>