From 67371e84fbd744eeb5416bf9c0707411e2498c1b Mon Sep 17 00:00:00 2001 From: Weblate Date: Sun, 3 Mar 2024 17:58:20 +0100 Subject: [PATCH] locales: Added translation using Weblate (Lithuanian) locales: Added translation using Weblate (Lithuanian) Co-authored-by: Weblate --- .../lt/LC_MESSAGES/Config_Reference.po | 9240 +++++++++++++++++ docs/locales/lt/LC_MESSAGES/G-Codes.po | 3322 ++++++ 2 files changed, 12562 insertions(+) create mode 100644 docs/locales/lt/LC_MESSAGES/Config_Reference.po create mode 100644 docs/locales/lt/LC_MESSAGES/G-Codes.po diff --git a/docs/locales/lt/LC_MESSAGES/Config_Reference.po b/docs/locales/lt/LC_MESSAGES/Config_Reference.po new file mode 100644 index 0000000000..0e6d9b6d7c --- /dev/null +++ b/docs/locales/lt/LC_MESSAGES/Config_Reference.po @@ -0,0 +1,9240 @@ +# +msgid "" +msgstr "" +"Language: lt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "" +"This document is a reference for options available in the Klipper config " +"file." +msgstr "" + +msgid "" +"The descriptions in this document are formatted so that it is possible to " +"cut-and-paste them into a printer config file. See the [installation " +"document](Installation.md) for information on setting up Klipper and " +"choosing an initial config file." +msgstr "" + +msgid "Micro-controller configuration" +msgstr "" + +msgid "Format of micro-controller pin names" +msgstr "" + +msgid "" +"Many config options require the name of a micro-controller pin. Klipper uses" +" the hardware names for these pins - for example `PA4`." +msgstr "" + +msgid "" +"Pin names may be preceded by `!` to indicate that a reverse polarity should " +"be used (eg, trigger on low instead of high)." +msgstr "" + +msgid "" +"Input pins may be preceded by `^` to indicate that a hardware pull-up " +"resistor should be enabled for the pin. If the micro-controller supports " +"pull-down resistors then an input pin may alternatively be preceded by `~`." +msgstr "" + +msgid "" +"Note, some config sections may \"create\" additional pins. Where this " +"occurs, the config section defining the pins must be listed in the config " +"file before any sections using those pins." +msgstr "" + +msgid "[mcu]" +msgstr "" + +msgid "Configuration of the primary micro-controller." +msgstr "" + +msgid "[mcu my_extra_mcu]" +msgstr "" + +msgid "" +"Additional micro-controllers (one may define any number of sections with an " +"\"mcu\" prefix). Additional micro-controllers introduce additional pins that" +" may be configured as heaters, steppers, fans, etc.. For example, if an " +"\"[mcu extra_mcu]\" section is introduced, then pins such as " +"\"extra_mcu:ar9\" may then be used elsewhere in the config (where \"ar9\" is" +" a hardware pin name or alias name on the given mcu)." +msgstr "" + +msgid "Common kinematic settings" +msgstr "" + +msgid "[printer]" +msgstr "" + +msgid "The printer section controls high level printer settings." +msgstr "" + +msgid "[stepper]" +msgstr "" + +msgid "" +"Stepper motor definitions. Different printer types (as specified by the " +"\"kinematics\" option in the [printer] config section) require different " +"names for the stepper (eg, `stepper_x` vs `stepper_a`). Below are common " +"stepper definitions." +msgstr "" + +msgid "Cartesian Kinematics" +msgstr "" + +msgid "" +"See [example-cartesian.cfg](../config/example-cartesian.cfg) for an example " +"cartesian kinematics config file." +msgstr "" + +msgid "" +"Only parameters specific to cartesian printers are described here - see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +msgid "Linear Delta Kinematics" +msgstr "" + +msgid "" +"See [example-delta.cfg](../config/example-delta.cfg) for an example linear " +"delta kinematics config file. See the [delta calibrate " +"guide](Delta_Calibrate.md) for information on calibration." +msgstr "" + +msgid "" +"Only parameters specific to linear delta printers are described here - see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +msgid "CoreXY Kinematics" +msgstr "" + +msgid "" +"See [example-corexy.cfg](../config/example-corexy.cfg) for an example corexy" +" (and h-bot) kinematics file." +msgstr "" + +msgid "" +"Only parameters specific to corexy printers are described here - see [common" +" kinematic settings](#common-kinematic-settings) for available parameters." +msgstr "" + +msgid "CoreXZ Kinematics" +msgstr "" + +msgid "" +"See [example-corexz.cfg](../config/example-corexz.cfg) for an example corexz" +" kinematics config file." +msgstr "" + +msgid "" +"Only parameters specific to corexz printers are described here - see [common" +" kinematic settings](#common-kinematic-settings) for available parameters." +msgstr "" + +msgid "Hybrid-CoreXY Kinematics" +msgstr "" + +msgid "" +"See [example-hybrid-corexy.cfg](../config/example-hybrid-corexy.cfg) for an " +"example hybrid corexy kinematics config file." +msgstr "" + +msgid "This kinematic is also known as Markforged kinematic." +msgstr "" + +msgid "" +"Only parameters specific to hybrid corexy printers are described here see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +msgid "Hybrid-CoreXZ Kinematics" +msgstr "" + +msgid "" +"See [example-hybrid-corexz.cfg](../config/example-hybrid-corexz.cfg) for an " +"example hybrid corexz kinematics config file." +msgstr "" + +msgid "Polar Kinematics" +msgstr "" + +msgid "" +"See [example-polar.cfg](../config/example-polar.cfg) for an example polar " +"kinematics config file." +msgstr "" + +msgid "" +"Only parameters specific to polar printers are described here - see [common " +"kinematic settings](#common-kinematic-settings) for available parameters." +msgstr "" + +msgid "Rotary delta Kinematics" +msgstr "" + +msgid "" +"See [example-rotary-delta.cfg](../config/example-rotary-delta.cfg) for an " +"example rotary delta kinematics config file." +msgstr "" + +msgid "" +"Only parameters specific to rotary delta printers are described here - see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +msgid "" +"ROTARY DELTA KINEMATICS ARE A WORK IN PROGRESS. Homing moves may timeout and" +" some boundary checks are not implemented." +msgstr "" + +msgid "Cable winch Kinematics" +msgstr "" + +msgid "" +"See the [example-winch.cfg](../config/example-winch.cfg) for an example " +"cable winch kinematics config file." +msgstr "" + +msgid "" +"Only parameters specific to cable winch printers are described here - see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +msgid "None Kinematics" +msgstr "" + +msgid "" +"It is possible to define a special \"none\" kinematics to disable kinematic " +"support in Klipper. This may be useful for controlling devices that are not " +"typical 3d-printers or for debugging purposes." +msgstr "" + +msgid "Common extruder and heated bed support" +msgstr "" + +msgid "[extruder]" +msgstr "" + +msgid "[heater_bed]" +msgstr "" + +msgid "" +"The heater_bed section describes a heated bed. It uses the same heater " +"settings described in the \"extruder\" section." +msgstr "" + +msgid "Bed level support" +msgstr "" + +msgid "[bed_mesh]" +msgstr "" + +msgid "" +"Mesh Bed Leveling. One may define a bed_mesh config section to enable move " +"transformations that offset the z axis based on a mesh generated from probed" +" points. When using a probe to home the z-axis, it is recommended to define " +"a safe_z_home section in printer.cfg to home toward the center of the print " +"area." +msgstr "" + +msgid "Visual Examples:" +msgstr "" + +msgid "[bed_tilt]" +msgstr "" + +msgid "" +"Bed tilt compensation. One may define a bed_tilt config section to enable " +"move transformations that account for a tilted bed. Note that bed_mesh and " +"bed_tilt are incompatible; both cannot be defined." +msgstr "" + +msgid "[bed_screws]" +msgstr "" + +msgid "" +"Tool to help adjust bed leveling screws. One may define a [bed_screws] " +"config section to enable a BED_SCREWS_ADJUST g-code command." +msgstr "" + +msgid "[screws_tilt_adjust]" +msgstr "" + +msgid "" +"Tool to help adjust bed screws tilt using Z probe. One may define a " +"screws_tilt_adjust config section to enable a SCREWS_TILT_CALCULATE g-code " +"command." +msgstr "" + +msgid "[z_tilt]" +msgstr "" + +msgid "[quad_gantry_level]" +msgstr "" + +msgid "" +"Moving gantry leveling using 4 independently controlled Z motors. Corrects " +"hyperbolic parabola effects (potato chip) on moving gantry which is more " +"flexible. WARNING: Using this on a moving bed may lead to undesirable " +"results. If this section is present then a QUAD_GANTRY_LEVEL extended G-Code" +" command becomes available. This routine assumes the following Z motor " +"configuration:" +msgstr "" + +msgid "[skew_correction]" +msgstr "" + +msgid "Customized homing" +msgstr "" + +msgid "[safe_z_home]" +msgstr "" + +msgid "[homing_override]" +msgstr "" + +msgid "" +"Homing override. One may use this mechanism to run a series of g-code " +"commands in place of a G28 found in the normal g-code input. This may be " +"useful on printers that require a specific procedure to home the machine." +msgstr "" + +msgid "[endstop_phase]" +msgstr "" + +msgid "" +"Stepper phase adjusted endstops. To use this feature, define a config " +"section with an \"endstop_phase\" prefix followed by the name of the " +"corresponding stepper config section (for example, \"[endstop_phase " +"stepper_z]\"). This feature can improve the accuracy of endstop switches. " +"Add a bare \"[endstop_phase]\" declaration to enable the " +"ENDSTOP_PHASE_CALIBRATE command." +msgstr "" + +msgid "G-Code macros and events" +msgstr "" + +msgid "[gcode_macro]" +msgstr "" + +msgid "" +"G-Code macros (one may define any number of sections with a \"gcode_macro\" " +"prefix). See the [command template guide](Command_Templates.md) for more " +"information." +msgstr "" + +msgid "[delayed_gcode]" +msgstr "" + +msgid "[save_variables]" +msgstr "" + +msgid "[idle_timeout]" +msgstr "" + +msgid "" +"Idle timeout. An idle timeout is automatically enabled - add an explicit " +"idle_timeout config section to change the default settings." +msgstr "" + +msgid "Optional G-Code features" +msgstr "" + +msgid "[virtual_sdcard]" +msgstr "" + +msgid "" +"A virtual sdcard may be useful if the host machine is not fast enough to run" +" OctoPrint well. It allows the Klipper host software to directly print gcode" +" files stored in a directory on the host using standard sdcard G-Code " +"commands (eg, M24)." +msgstr "" + +msgid "[sdcard_loop]" +msgstr "" + +msgid "" +"Some printers with stage-clearing features, such as a part ejector or a belt" +" printer, can find use in looping sections of the sdcard file. (For example," +" to print the same part over and over, or repeat the a section of a part for" +" a chain or other repeated pattern)." +msgstr "" + +msgid "[force_move]" +msgstr "" + +msgid "[pause_resume]" +msgstr "" + +msgid "[firmware_retraction]" +msgstr "" + +msgid "[gcode_arcs]" +msgstr "" + +msgid "Support for gcode arc (G2/G3) commands." +msgstr "" + +msgid "[respond]" +msgstr "" + +msgid "Resonance compensation" +msgstr "" + +msgid "[input_shaper]" +msgstr "" + +msgid "[adxl345]" +msgstr "" + +msgid "[resonance_tester]" +msgstr "" + +msgid "Config file helpers" +msgstr "" + +msgid "[board_pins]" +msgstr "" + +msgid "" +"Board pin aliases (one may define any number of sections with a " +"\"board_pins\" prefix). Use this to define aliases for the pins on a micro-" +"controller." +msgstr "" + +msgid "[include]" +msgstr "" + +msgid "" +"Include file support. One may include additional config file from the main " +"printer config file. Wildcards may also be used (eg, \"configs/*.cfg\")." +msgstr "" + +msgid "Bed probing hardware" +msgstr "" + +msgid "[probe]" +msgstr "" + +msgid "" +"Z height probe. One may define this section to enable Z height probing " +"hardware. When this section is enabled, PROBE and QUERY_PROBE extended " +"[g-code commands](G-Codes.md#probe) become available. Also, see the [probe " +"calibrate guide](Probe_Calibrate.md). The probe section also creates a " +"virtual \"probe:z_virtual_endstop\" pin. One may set the stepper_z " +"endstop_pin to this virtual pin on cartesian style printers that use the " +"probe in place of a z endstop. If using \"probe:z_virtual_endstop\" then do " +"not define a position_endstop in the stepper_z config section." +msgstr "" + +msgid "[bltouch]" +msgstr "" + +msgid "" +"BLTouch probe. One may define this section (instead of a probe section) to " +"enable a BLTouch probe. See [BL-Touch guide](BLTouch.md) and [command " +"reference](G-Codes.md#bltouch) for further information. A virtual " +"\"probe:z_virtual_endstop\" pin is also created (see the \"probe\" section " +"for the details)." +msgstr "" + +msgid "Additional stepper motors and extruders" +msgstr "" + +msgid "[stepper_z1]" +msgstr "" + +msgid "" +"Multi-stepper axes. On a cartesian style printer, the stepper controlling a " +"given axis may have additional config blocks defining steppers that should " +"be stepped in concert with the primary stepper. One may define any number of" +" sections with a numeric suffix starting at 1 (for example, \"stepper_z1\", " +"\"stepper_z2\", etc.)." +msgstr "" + +msgid "[extruder1]" +msgstr "" + +msgid "" +"In a multi-extruder printer add an additional extruder section for each " +"additional extruder. The additional extruder sections should be named " +"\"extruder1\", \"extruder2\", \"extruder3\", and so on. See the \"extruder\"" +" section for a description of available parameters." +msgstr "" + +msgid "" +"See [sample-multi-extruder.cfg](../config/sample-multi-extruder.cfg) for an " +"example configuration." +msgstr "" + +msgid "[dual_carriage]" +msgstr "" + +msgid "" +"See [sample-idex.cfg](../config/sample-idex.cfg) for an example " +"configuration." +msgstr "" + +msgid "[extruder_stepper]" +msgstr "" + +msgid "" +"Support for additional steppers synchronized to the movement of an extruder " +"(one may define any number of sections with an \"extruder_stepper\" prefix)." +msgstr "" + +msgid "[manual_stepper]" +msgstr "" + +msgid "Custom heaters and sensors" +msgstr "" + +msgid "[verify_heater]" +msgstr "" + +msgid "" +"Heater and temperature sensor verification. Heater verification is " +"automatically enabled for each heater that is configured on the printer. Use" +" verify_heater sections to change the default settings." +msgstr "" + +msgid "[homing_heaters]" +msgstr "" + +msgid "Tool to disable heaters when homing or probing an axis." +msgstr "" + +msgid "[thermistor]" +msgstr "" + +msgid "" +"Custom thermistors (one may define any number of sections with a " +"\"thermistor\" prefix). A custom thermistor may be used in the sensor_type " +"field of a heater config section. (For example, if one defines a " +"\"[thermistor my_thermistor]\" section then one may use a \"sensor_type: " +"my_thermistor\" when defining a heater.) Be sure to place the thermistor " +"section in the config file above its first use in a heater section." +msgstr "" + +msgid "[adc_temperature]" +msgstr "" + +msgid "" +"Custom ADC temperature sensors (one may define any number of sections with " +"an \"adc_temperature\" prefix). This allows one to define a custom " +"temperature sensor that measures a voltage on an Analog to Digital Converter" +" (ADC) pin and uses linear interpolation between a set of configured " +"temperature/voltage (or temperature/resistance) measurements to determine " +"the temperature. The resulting sensor can be used as a sensor_type in a " +"heater section. (For example, if one defines a \"[adc_temperature " +"my_sensor]\" section then one may use a \"sensor_type: my_sensor\" when " +"defining a heater.) Be sure to place the sensor section in the config file " +"above its first use in a heater section." +msgstr "" + +msgid "[heater_generic]" +msgstr "" + +msgid "[temperature_sensor]" +msgstr "" + +msgid "" +"Generic temperature sensors. One can define any number of additional " +"temperature sensors that are reported via the M105 command." +msgstr "" + +msgid "Temperature sensors" +msgstr "" + +msgid "Common thermistors" +msgstr "" + +msgid "" +"Common thermistors. The following parameters are available in heater " +"sections that use one of these sensors." +msgstr "" + +msgid "Common temperature amplifiers" +msgstr "" + +msgid "" +"Common temperature amplifiers. The following parameters are available in " +"heater sections that use one of these sensors." +msgstr "" + +msgid "Directly connected PT1000 sensor" +msgstr "" + +msgid "" +"Directly connected PT1000 sensor. The following parameters are available in " +"heater sections that use one of these sensors." +msgstr "" + +msgid "MAXxxxxx temperature sensors" +msgstr "" + +msgid "" +"MAXxxxxx serial peripheral interface (SPI) temperature based sensors. The " +"following parameters are available in heater sections that use one of these " +"sensor types." +msgstr "" + +msgid "BMP280/BME280/BME680 temperature sensor" +msgstr "" + +msgid "HTU21D sensor" +msgstr "" + +msgid "" +"HTU21D family two wire interface (I2C) environmental sensor. Note that this " +"sensor is not intended for use with extruders and heater beds, but rather " +"for monitoring ambient temperature (C) and relative humidity. See [sample-" +"macros.cfg](../config/sample-macros.cfg) for a gcode_macro that may be used " +"to report humidity in addition to temperature." +msgstr "" + +msgid "LM75 temperature sensor" +msgstr "" + +msgid "Builtin micro-controller temperature sensor" +msgstr "" + +msgid "" +"The atsam, atsamd, and stm32 micro-controllers contain an internal " +"temperature sensor. One can use the \"temperature_mcu\" sensor to monitor " +"these temperatures." +msgstr "" + +msgid "Host temperature sensor" +msgstr "" + +msgid "" +"Temperature from the machine (eg Raspberry Pi) running the host software." +msgstr "" + +msgid "DS18B20 temperature sensor" +msgstr "" + +msgid "" +"DS18B20 is a 1-wire (w1) digital temperature sensor. Note that this sensor " +"is not intended for use with extruders and heater beds, but rather for " +"monitoring ambient temperature (C). These sensors have range up to 125 C, so" +" are usable for e.g. chamber temperature monitoring. They can also function " +"as simple fan/heater controllers. DS18B20 sensors are only supported on the " +"\"host mcu\", e.g. the Raspberry Pi. The w1-gpio Linux kernel module must be" +" installed." +msgstr "" + +msgid "Fans" +msgstr "" + +msgid "[fan]" +msgstr "" + +msgid "Print cooling fan." +msgstr "" + +msgid "[heater_fan]" +msgstr "" + +msgid "" +"Heater cooling fans (one may define any number of sections with a " +"\"heater_fan\" prefix). A \"heater fan\" is a fan that will be enabled " +"whenever its associated heater is active. By default, a heater_fan has a " +"shutdown_speed equal to max_power." +msgstr "" + +msgid "[controller_fan]" +msgstr "" + +msgid "[temperature_fan]" +msgstr "" + +msgid "" +"Temperature-triggered cooling fans (one may define any number of sections " +"with a \"temperature_fan\" prefix). A \"temperature fan\" is a fan that will" +" be enabled whenever its associated sensor is above a set temperature. By " +"default, a temperature_fan has a shutdown_speed equal to max_power." +msgstr "" + +msgid "[fan_generic]" +msgstr "" + +msgid "[servo]" +msgstr "" + +msgid "[neopixel]" +msgstr "" + +msgid "[dotstar]" +msgstr "" + +msgid "PCA9533 LED support. The PCA9533 is used on the mightyboard." +msgstr "" + +msgid "[gcode_button]" +msgstr "" + +msgid "" +"Execute gcode when a button is pressed or released (or when a pin changes " +"state). You can check the state of the button by using `QUERY_BUTTON " +"button=my_gcode_button`." +msgstr "" + +msgid "[output_pin]" +msgstr "" + +msgid "[static_digital_output]" +msgstr "" + +msgid "" +"Statically configured digital output pins (one may define any number of " +"sections with a \"static_digital_output\" prefix). Pins configured here will" +" be setup as a GPIO output during MCU configuration. They can not be changed" +" at run-time." +msgstr "" + +msgid "[multi_pin]" +msgstr "" + +msgid "" +"Multiple pin outputs (one may define any number of sections with a " +"\"multi_pin\" prefix). A multi_pin output creates an internal pin alias that" +" can modify multiple output pins each time the alias pin is set. For " +"example, one could define a \"[multi_pin my_fan]\" object containing two " +"pins and then set \"pin=multi_pin:my_fan\" in the \"[fan]\" section - on " +"each fan change both output pins would be updated. These aliases may not be " +"used with stepper motor pins." +msgstr "" + +msgid "TMC stepper driver configuration" +msgstr "" + +msgid "[tmc2130]" +msgstr "" + +msgid "" +"Configure a TMC2130 stepper motor driver via SPI bus. To use this feature, " +"define a config section with a \"tmc2130\" prefix followed by the name of " +"the corresponding stepper config section (for example, \"[tmc2130 " +"stepper_x]\")." +msgstr "" + +msgid "[tmc2208]" +msgstr "" + +msgid "" +"Configure a TMC2208 (or TMC2224) stepper motor driver via single wire UART. " +"To use this feature, define a config section with a \"tmc2208\" prefix " +"followed by the name of the corresponding stepper config section (for " +"example, \"[tmc2208 stepper_x]\")." +msgstr "" + +msgid "[tmc2209]" +msgstr "" + +msgid "" +"Configure a TMC2209 stepper motor driver via single wire UART. To use this " +"feature, define a config section with a \"tmc2209\" prefix followed by the " +"name of the corresponding stepper config section (for example, \"[tmc2209 " +"stepper_x]\")." +msgstr "" + +msgid "[tmc2660]" +msgstr "" + +msgid "" +"Configure a TMC2660 stepper motor driver via SPI bus. To use this feature, " +"define a config section with a tmc2660 prefix followed by the name of the " +"corresponding stepper config section (for example, \"[tmc2660 stepper_x]\")." +msgstr "" + +msgid "[tmc5160]" +msgstr "" + +msgid "" +"Configure a TMC5160 stepper motor driver via SPI bus. To use this feature, " +"define a config section with a \"tmc5160\" prefix followed by the name of " +"the corresponding stepper config section (for example, \"[tmc5160 " +"stepper_x]\")." +msgstr "" + +msgid "Run-time stepper motor current configuration" +msgstr "" + +msgid "[ad5206]" +msgstr "" + +msgid "" +"Statically configured AD5206 digipots connected via SPI bus (one may define " +"any number of sections with an \"ad5206\" prefix)." +msgstr "" + +msgid "[mcp4451]" +msgstr "" + +msgid "" +"Statically configured MCP4451 digipot connected via I2C bus (one may define " +"any number of sections with an \"mcp4451\" prefix)." +msgstr "" + +msgid "[mcp4728]" +msgstr "" + +msgid "" +"Statically configured MCP4728 digital-to-analog converter connected via I2C " +"bus (one may define any number of sections with an \"mcp4728\" prefix)." +msgstr "" + +msgid "[mcp4018]" +msgstr "" + +msgid "" +"Statically configured MCP4018 digipot connected via two gpio \"bit banging\"" +" pins (one may define any number of sections with an \"mcp4018\" prefix)." +msgstr "" + +msgid "Display support" +msgstr "" + +msgid "[display]" +msgstr "" + +msgid "Support for a display attached to the micro-controller." +msgstr "" + +msgid "hd44780 display" +msgstr "" + +msgid "" +"Information on configuring hd44780 displays (which is used in " +"\"RepRapDiscount 2004 Smart Controller\" type displays)." +msgstr "" + +msgid "hd44780_spi display" +msgstr "" + +msgid "" +"Information on configuring an hd44780_spi display - a 20x04 display " +"controlled via a hardware \"shift register\" (which is used in mightyboard " +"based printers)." +msgstr "" + +msgid "st7920 display" +msgstr "" + +msgid "" +"Information on configuring st7920 displays (which is used in " +"\"RepRapDiscount 12864 Full Graphic Smart Controller\" type displays)." +msgstr "" + +msgid "emulated_st7920 display" +msgstr "" + +msgid "" +"Information on configuring an emulated st7920 display - found in some \"2.4 " +"inch touchscreen devices\" and similar." +msgstr "" + +msgid "uc1701 display" +msgstr "" + +msgid "" +"Information on configuring uc1701 displays (which is used in \"MKS Mini " +"12864\" type displays)." +msgstr "" + +msgid "ssd1306 and sh1106 displays" +msgstr "" + +msgid "Information on configuring ssd1306 and sh1106 displays." +msgstr "" + +msgid "[display_data]" +msgstr "" + +msgid "" +"Support for displaying custom data on an lcd screen. One may create any " +"number of display groups and any number of data items under those groups. " +"The display will show all the data items for a given group if the " +"display_group option in the [display] section is set to the given group " +"name." +msgstr "" + +msgid "" +"A [default set of display groups](../klippy/extras/display/display.cfg) are " +"automatically created. One can replace or extend these display_data items by" +" overriding the defaults in the main printer.cfg config file." +msgstr "" + +msgid "[display_template]" +msgstr "" + +msgid "[display_glyph]" +msgstr "" + +msgid "" +"Display a custom glyph on displays that support it. The given name will be " +"assigned the given display data which can then be referenced in the display " +"templates by their name surrounded by two \"tilde\" symbols i.e. " +"`~my_display_glyph~`" +msgstr "" + +msgid "" +"See [sample-glyphs.cfg](../config/sample-glyphs.cfg) for some examples." +msgstr "" + +msgid "[display my_extra_display]" +msgstr "" + +msgid "" +"If a primary [display] section has been defined in printer.cfg as shown " +"above it is possible to define multiple auxiliary displays. Note that " +"auxiliary displays do not currently support menu functionality, thus they do" +" not support the \"menu\" options or button configuration." +msgstr "" + +msgid "[menu]" +msgstr "" + +msgid "Customizable lcd display menus." +msgstr "" + +msgid "" +"A [default set of menus](../klippy/extras/display/menu.cfg) are " +"automatically created. One can replace or extend the menu by overriding the " +"defaults in the main printer.cfg config file." +msgstr "" + +msgid "" +"See the [command template document](Command_Templates.md#menu-templates) for" +" information on menu attributes available during template rendering." +msgstr "" + +msgid "Filament sensors" +msgstr "" + +msgid "[filament_switch_sensor]" +msgstr "" + +msgid "" +"Filament Switch Sensor. Support for filament insert and runout detection " +"using a switch sensor, such as an endstop switch." +msgstr "" + +msgid "[filament_motion_sensor]" +msgstr "" + +msgid "" +"Filament Motion Sensor. Support for filament insert and runout detection " +"using an encoder that toggles the output pin during filament movement " +"through the sensor." +msgstr "" + +msgid "[tsl1401cl_filament_width_sensor]" +msgstr "" + +msgid "" +"TSLl401CL Based Filament Width Sensor. See the " +"[guide](TSL1401CL_Filament_Width_Sensor.md) for more information." +msgstr "" + +msgid "[hall_filament_width_sensor]" +msgstr "" + +msgid "Board specific hardware support" +msgstr "" + +msgid "[sx1509]" +msgstr "" + +msgid "" +"Configure an SX1509 I2C to GPIO expander. Due to the delay incurred by I2C " +"communication you should NOT use SX1509 pins as stepper enable, step or dir " +"pins or any other pin that requires fast bit-banging. They are best used as " +"static or gcode controlled digital outputs or hardware-pwm pins for e.g. " +"fans. One may define any number of sections with an \"sx1509\" prefix. Each " +"expander provides a set of 16 pins (sx1509_my_sx1509:PIN_0 to " +"sx1509_my_sx1509:PIN_15) which can be used in the printer configuration." +msgstr "" + +msgid "" +"See the [generic-duet2-duex.cfg](../config/generic-duet2-duex.cfg) file for " +"an example." +msgstr "" + +msgid "[samd_sercom]" +msgstr "" + +msgid "[adc_scaled]" +msgstr "" + +msgid "" +"Duet2 Maestro analog scaling by vref and vssa readings. Defining an " +"adc_scaled section enables virtual adc pins (such as \"my_name:PB0\") that " +"are automatically adjusted by the board's vref and vssa monitoring pins. Be " +"sure to define this config section above any config sections that use one " +"these virtual pins." +msgstr "" + +msgid "" +"See the [generic-duet2-maestro.cfg](../config/generic-duet2-maestro.cfg) " +"file for an example." +msgstr "" + +msgid "[replicape]" +msgstr "" + +msgid "Other Custom Modules" +msgstr "" + +msgid "[palette2]" +msgstr "" + +msgid "" +"Palette 2 multimaterial support - provides a tighter integration supporting " +"Palette 2 devices in connected mode." +msgstr "" + +msgid "" +"This modules also requires `[virtual_sdcard]` and `[pause_resume]` for full " +"functionality." +msgstr "" + +msgid "" +"If you use this module, do not use the Palette 2 plugin for Octoprint as " +"they will conflict, and 1 will fail to initialize properly likely aborting " +"your print." +msgstr "" + +msgid "" +"If you use Octoprint and stream gcode over the serial port instead of " +"printing from virtual_sd, then remo **M1** and **M0** from *Pausing " +"commands* in *Settings > Serial Connection > Firmware & protocol* will " +"prevent the need to start print on the Palette 2 and unpausing in Octoprint " +"for your print to begin." +msgstr "" + +msgid "Common bus parameters" +msgstr "" + +msgid "Common SPI settings" +msgstr "" + +msgid "" +"The following parameters are generally available for devices using an SPI " +"bus." +msgstr "" + +msgid "Common I2C settings" +msgstr "" + +msgid "" +"The following parameters are generally available for devices using an I2C " +"bus." +msgstr "" + +msgid "" +"[mcu]\n" +"serial:\n" +"# The serial port to connect to the MCU. If unsure (or if it\n" +"# changes) see the \"Where's my serial port?\" section of the FAQ.\n" +"# This parameter must be provided when using a serial port.\n" +"#baud: 250000\n" +"# The baud rate to use. The default is 250000.\n" +"#canbus_uuid:\n" +"# If using a device connected to a CAN bus then this sets the unique\n" +"# chip identifier to connect to. This value must be provided when using\n" +"# CAN bus for communication.\n" +"#canbus_interface:\n" +"# If using a device connected to a CAN bus then this sets the CAN\n" +"# network interface to use. The default is 'can0'.\n" +"#restart_method:\n" +"# This controls the mechanism the host will use to reset the\n" +"# micro-controller. The choices are 'arduino', 'cheetah', 'rpi_usb',\n" +"# and 'command'. The 'arduino' method (toggle DTR) is common on\n" +"# Arduino boards and clones. The 'cheetah' method is a special\n" +"# method needed for some Fysetc Cheetah boards. The 'rpi_usb' method\n" +"# is useful on Raspberry Pi boards with micro-controllers powered\n" +"# over USB - it briefly disables power to all USB ports to\n" +"# accomplish a micro-controller reset. The 'command' method involves\n" +"# sending a Klipper command to the micro-controller so that it can\n" +"# reset itself. The default is 'arduino' if the micro-controller\n" +"# communicates over a serial port, 'command' otherwise.\n" +msgstr "" + +msgid "" +"[mcu my_extra_mcu]\n" +"# See the \"mcu\" section for configuration parameters.\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: cartesian\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. This setting can be used to restrict the maximum speed of\n" +"# the z stepper motor. The default is to use max_velocity for\n" +"# max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. It limits the acceleration of the z stepper motor. The\n" +"# default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_x section is used to describe the stepper controlling\n" +"# the X axis in a cartesian robot.\n" +"[stepper_x]\n" +"\n" +"# The stepper_y section is used to describe the stepper controlling\n" +"# the Y axis in a cartesian robot.\n" +"[stepper_y]\n" +"\n" +"# The stepper_z section is used to describe the stepper controlling\n" +"# the Z axis in a cartesian robot.\n" +"[stepper_z]\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: corexy\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. This setting can be used to restrict the maximum speed of\n" +"# the z stepper motor. The default is to use max_velocity for\n" +"# max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. It limits the acceleration of the z stepper motor. The\n" +"# default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_x section is used to describe the X axis as well as the\n" +"# stepper controlling the X+Y movement.\n" +"[stepper_x]\n" +"\n" +"# The stepper_y section is used to describe the Y axis as well as the\n" +"# stepper controlling the X-Y movement.\n" +"[stepper_y]\n" +"\n" +"# The stepper_z section is used to describe the stepper controlling\n" +"# the Z axis.\n" +"[stepper_z]\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: corexz\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. The default is to use max_velocity for max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. The default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_x section is used to describe the X axis as well as the\n" +"# stepper controlling the X+Z movement.\n" +"[stepper_x]\n" +"\n" +"# The stepper_y section is used to describe the stepper controlling\n" +"# the Y axis.\n" +"[stepper_y]\n" +"\n" +"# The stepper_z section is used to describe the Z axis as well as the\n" +"# stepper controlling the X-Z movement.\n" +"[stepper_z]\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: hybrid_corexy\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. The default is to use max_velocity for max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. The default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_x section is used to describe the X axis as well as the\n" +"# stepper controlling the X-Y movement.\n" +"[stepper_x]\n" +"\n" +"# The stepper_y section is used to describe the stepper controlling\n" +"# the Y axis.\n" +"[stepper_y]\n" +"\n" +"# The stepper_z section is used to describe the stepper controlling\n" +"# the Z axis.\n" +"[stepper_z]\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: hybrid_corexz\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. The default is to use max_velocity for max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. The default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_x section is used to describe the X axis as well as the\n" +"# stepper controlling the X-Z movement.\n" +"[stepper_x]\n" +"\n" +"# The stepper_y section is used to describe the stepper controlling\n" +"# the Y axis.\n" +"[stepper_y]\n" +"\n" +"# The stepper_z section is used to describe the stepper controlling\n" +"# the Z axis.\n" +"[stepper_z]\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: rotary_delta\n" +"max_z_velocity:\n" +"# For delta printers this limits the maximum velocity (in mm/s) of\n" +"# moves with z axis movement. This setting can be used to reduce the\n" +"# maximum speed of up/down moves (which require a higher step rate\n" +"# than other moves on a delta printer). The default is to use\n" +"# max_velocity for max_z_velocity.\n" +"#minimum_z_position: 0\n" +"# The minimum Z position that the user may command the head to move\n" +"# to. The default is 0.\n" +"shoulder_radius:\n" +"# Radius (in mm) of the horizontal circle formed by the three\n" +"# shoulder joints, minus the radius of the circle formed by the\n" +"# effector joints. This parameter may also be calculated as:\n" +"# shoulder_radius = (delta_f - delta_e) / sqrt(12)\n" +"# This parameter must be provided.\n" +"shoulder_height:\n" +"# Distance (in mm) of the shoulder joints from the bed, minus the\n" +"# effector toolhead height. This parameter must be provided.\n" +"\n" +"# The stepper_a section describes the stepper controlling the rear\n" +"# right arm (at 30 degrees). This section also controls the homing\n" +"# parameters (homing_speed, homing_retract_dist) for all arms.\n" +"[stepper_a]\n" +"gear_ratio:\n" +"# A gear_ratio must be specified and rotation_distance may not be\n" +"# specified. For example, if the arm has an 80 toothed pulley driven\n" +"# by a pulley with 16 teeth, which is in turn connected to a 60\n" +"# toothed pulley driven by a stepper with a 16 toothed pulley, then\n" +"# one would specify a gear ratio of \"80:16, 60:16\". This parameter\n" +"# must be provided.\n" +"position_endstop:\n" +"# Distance (in mm) between the nozzle and the bed when the nozzle is\n" +"# in the center of the build area and the endstop triggers. This\n" +"# parameter must be provided for stepper_a; for stepper_b and\n" +"# stepper_c this parameter defaults to the value specified for\n" +"# stepper_a.\n" +"upper_arm_length:\n" +"# Length (in mm) of the arm connecting the \"shoulder joint\" to the\n" +"# \"elbow joint\". This parameter must be provided for stepper_a; for\n" +"# stepper_b and stepper_c this parameter defaults to the value\n" +"# specified for stepper_a.\n" +"lower_arm_length:\n" +"# Length (in mm) of the arm connecting the \"elbow joint\" to the\n" +"# \"effector joint\". This parameter must be provided for stepper_a;\n" +"# for stepper_b and stepper_c this parameter defaults to the value\n" +"# specified for stepper_a.\n" +"#angle:\n" +"# This option specifies the angle (in degrees) that the arm is at.\n" +"# The default is 30 for stepper_a, 150 for stepper_b, and 270 for\n" +"# stepper_c.\n" +"\n" +"# The stepper_b section describes the stepper controlling the rear\n" +"# left arm (at 150 degrees).\n" +"[stepper_b]\n" +"\n" +"# The stepper_c section describes the stepper controlling the front\n" +"# arm (at 270 degrees).\n" +"[stepper_c]\n" +"\n" +"# The delta_calibrate section enables a DELTA_CALIBRATE extended\n" +"# g-code command that can calibrate the shoulder endstop positions.\n" +"[delta_calibrate]\n" +"radius:\n" +"# Radius (in mm) of the area that may be probed. This is the radius\n" +"# of nozzle coordinates to be probed; if using an automatic probe\n" +"# with an XY offset then choose a radius small enough so that the\n" +"# probe always fits over the bed. This parameter must be provided.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +msgstr "" + +msgid "" +"[printer]\n" +"kinematics: none\n" +"max_velocity: 1\n" +"max_accel: 1\n" +"# The max_velocity and max_accel parameters must be defined. The\n" +"# values are not used for \"none\" kinematics.\n" +msgstr "" + +msgid "" +"[heater_bed]\n" +"heater_pin:\n" +"sensor_type:\n" +"sensor_pin:\n" +"control:\n" +"min_temp:\n" +"max_temp:\n" +"# See the \"extruder\" section for a description of the above parameters.\n" +msgstr "" + +msgid "" +" ----------------\n" +" |Z1 Z2|\n" +" | --------- |\n" +" | | | |\n" +" | | | |\n" +" | x-------- |\n" +" |Z Z3|\n" +" ----------------\n" +msgstr "" + +msgid "[skew_correction]\n" +msgstr "" + +msgid "" +"[homing_override]\n" +"gcode:\n" +"# A list of G-Code commands to execute in place of G28 commands\n" +"# found in the normal g-code input. See docs/Command_Templates.md\n" +"# for G-Code format. If a G28 is contained in this list of commands\n" +"# then it will invoke the normal homing procedure for the printer.\n" +"# The commands listed here must home all axes. This parameter must\n" +"# be provided.\n" +"#axes: xyz\n" +"# The axes to override. For example, if this is set to \"z\" then the\n" +"# override script will only be run when the z axis is homed (eg, via\n" +"# a \"G28\" or \"G28 Z0\" command). Note, the override script should\n" +"# still home all axes. The default is \"xyz\" which causes the\n" +"# override script to be run in place of all G28 commands.\n" +"#set_position_x:\n" +"#set_position_y:\n" +"#set_position_z:\n" +"# If specified, the printer will assume the axis is at the specified\n" +"# position prior to running the above g-code commands. Setting this\n" +"# disables homing checks for that axis. This may be useful if the\n" +"# head must move prior to invoking the normal G28 mechanism for an\n" +"# axis. The default is to not force a position for an axis.\n" +msgstr "" + +msgid "" +"[endstop_phase stepper_z]\n" +"#endstop_accuracy:\n" +"# Sets the expected accuracy (in mm) of the endstop. This represents\n" +"# the maximum error distance the endstop may trigger (eg, if an\n" +"# endstop may occasionally trigger 100um early or up to 100um late\n" +"# then set this to 0.200 for 200um). The default is\n" +"# 4*rotation_distance/full_steps_per_rotation.\n" +"#trigger_phase:\n" +"# This specifies the phase of the stepper motor driver to expect\n" +"# when hitting the endstop. It is composed of two numbers separated\n" +"# by a forward slash character - the phase and the total number of\n" +"# phases (eg, \"7/64\"). Only set this value if one is sure the\n" +"# stepper motor driver is reset every time the mcu is reset. If this\n" +"# is not set, then the stepper phase will be detected on the first\n" +"# home and that phase will be used on all subsequent homes.\n" +"#endstop_align_zero: False\n" +"# If true then the position_endstop of the axis will effectively be\n" +"# modified so that the zero position for the axis occurs at a full\n" +"# step on the stepper motor. (If used on the Z axis and the print\n" +"# layer height is a multiple of a full step distance then every\n" +"# layer will occur on a full step.) The default is False.\n" +msgstr "" + +msgid "" +"[gcode_macro my_cmd]\n" +"#gcode:\n" +"# A list of G-Code commands to execute in place of \"my_cmd\". See\n" +"# docs/Command_Templates.md for G-Code format. This parameter must\n" +"# be provided.\n" +"#variable_:\n" +"# One may specify any number of options with a \"variable_\" prefix.\n" +"# The given variable name will be assigned the given value (parsed\n" +"# as a Python literal) and will be available during macro expansion.\n" +"# For example, a config with \"variable_fan_speed = 75\" might have\n" +"# gcode commands containing \"M106 S{ fan_speed * 255 }\". Variables\n" +"# can be changed at run-time using the SET_GCODE_VARIABLE command\n" +"# (see docs/Command_Templates.md for details). Variable names may\n" +"# not use upper case characters.\n" +"#rename_existing:\n" +"# This option will cause the macro to override an existing G-Code\n" +"# command and provide the previous definition of the command via the\n" +"# name provided here. This can be used to override builtin G-Code\n" +"# commands. Care should be taken when overriding commands as it can\n" +"# cause complex and unexpected results. The default is to not\n" +"# override an existing G-Code command.\n" +"#description: G-Code macro\n" +"# This will add a short description used at the HELP command or while\n" +"# using the auto completion feature. Default \"G-Code macro\"\n" +msgstr "" + +msgid "" +"[delayed_gcode my_delayed_gcode]\n" +"gcode:\n" +"# A list of G-Code commands to execute when the delay duration has\n" +"# elapsed. G-Code templates are supported. This parameter must be\n" +"# provided.\n" +"#initial_duration: 0.0\n" +"# The duration of the initial delay (in seconds). If set to a\n" +"# non-zero value the delayed_gcode will execute the specified number\n" +"# of seconds after the printer enters the \"ready\" state. This can be\n" +"# useful for initialization procedures or a repeating delayed_gcode.\n" +"# If set to 0 the delayed_gcode will not execute on startup.\n" +"# Default is 0.\n" +msgstr "" + +msgid "" +"[save_variables]\n" +"filename:\n" +"# Required - provide a filename that would be used to save the\n" +"# variables to disk e.g. ~/variables.cfg\n" +msgstr "" + +msgid "" +"[idle_timeout]\n" +"#gcode:\n" +"# A list of G-Code commands to execute on an idle timeout. See\n" +"# docs/Command_Templates.md for G-Code format. The default is to run\n" +"# \"TURN_OFF_HEATERS\" and \"M84\".\n" +"#timeout: 600\n" +"# Idle time (in seconds) to wait before running the above G-Code\n" +"# commands. The default is 600 seconds.\n" +msgstr "" + +msgid "[sdcard_loop]\n" +msgstr "" + +msgid "" +"[force_move]\n" +"#enable_force_move: False\n" +"# Set to true to enable FORCE_MOVE and SET_KINEMATIC_POSITION\n" +"# extended G-Code commands. The default is false.\n" +msgstr "" + +msgid "" +"[pause_resume]\n" +"#recover_velocity: 50.\n" +"# When capture/restore is enabled, the speed at which to return to\n" +"# the captured position (in mm/s). Default is 50.0 mm/s.\n" +msgstr "" + +msgid "" +"[firmware_retraction]\n" +"#retract_length: 0\n" +"# The length of filament (in mm) to retract when G10 is activated,\n" +"# and to unretract when G11 is activated (but see\n" +"# unretract_extra_length below). The default is 0 mm.\n" +"#retract_speed: 20\n" +"# The speed of retraction, in mm/s. The default is 20 mm/s.\n" +"#unretract_extra_length: 0\n" +"# The length (in mm) of *additional* filament to add when\n" +"# unretracting.\n" +"#unretract_speed: 10\n" +"# The speed of unretraction, in mm/s. The default is 10 mm/s.\n" +msgstr "" + +msgid "" +"[gcode_arcs]\n" +"#resolution: 1.0\n" +"# An arc will be split into segments. Each segment's length will\n" +"# equal the resolution in mm set above. Lower values will produce a\n" +"# finer arc, but also more work for your machine. Arcs smaller than\n" +"# the configured value will become straight lines. The default is\n" +"# 1mm.\n" +msgstr "" + +msgid "" +"[respond]\n" +"#default_type: echo\n" +"# Sets the default prefix of the \"M118\" and \"RESPOND\" output to one\n" +"# of the following:\n" +"# echo: \"echo: \" (This is the default)\n" +"# command: \"// \"\n" +"# error: \"!! \"\n" +"#default_prefix: echo:\n" +"# Directly sets the default prefix. If present, this value will\n" +"# override the \"default_type\".\n" +msgstr "" + +msgid "" +"[input_shaper]\n" +"#shaper_freq_x: 0\n" +"# A frequency (in Hz) of the input shaper for X axis. This is\n" +"# usually a resonance frequency of X axis that the input shaper\n" +"# should suppress. For more complex shapers, like 2- and 3-hump EI\n" +"# input shapers, this parameter can be set from different\n" +"# considerations. The default value is 0, which disables input\n" +"# shaping for X axis.\n" +"#shaper_freq_y: 0\n" +"# A frequency (in Hz) of the input shaper for Y axis. This is\n" +"# usually a resonance frequency of Y axis that the input shaper\n" +"# should suppress. For more complex shapers, like 2- and 3-hump EI\n" +"# input shapers, this parameter can be set from different\n" +"# considerations. The default value is 0, which disables input\n" +"# shaping for Y axis.\n" +"#shaper_type: mzv\n" +"# A type of the input shaper to use for both X and Y axes. Supported\n" +"# shapers are zv, mzv, zvd, ei, 2hump_ei, and 3hump_ei. The default\n" +"# is mzv input shaper.\n" +"#shaper_type_x:\n" +"#shaper_type_y:\n" +"# If shaper_type is not set, these two parameters can be used to\n" +"# configure different input shapers for X and Y axes. The same\n" +"# values are supported as for shaper_type parameter.\n" +"#damping_ratio_x: 0.1\n" +"#damping_ratio_y: 0.1\n" +"# Damping ratios of vibrations of X and Y axes used by input shapers\n" +"# to improve vibration suppression. Default value is 0.1 which is a\n" +"# good all-round value for most printers. In most circumstances this\n" +"# parameter requires no tuning and should not be changed.\n" +msgstr "" + +msgid "" +"[board_pins my_aliases]\n" +"mcu: mcu\n" +"# A comma separated list of micro-controllers that may use the\n" +"# aliases. The default is to apply the aliases to the main \"mcu\".\n" +"aliases:\n" +"aliases_:\n" +"# A comma separated list of \"name=value\" aliases to create for the\n" +"# given micro-controller. For example, \"EXP1_1=PE6\" would create an\n" +"# \"EXP1_1\" alias for the \"PE6\" pin. However, if \"value\" is enclosed\n" +"# in \"<>\" then \"name\" is created as a reserved pin (for example,\n" +"# \"EXP1_9=\" would reserve \"EXP1_9\"). Any number of options\n" +"# starting with \"aliases_\" may be specified.\n" +msgstr "" + +msgid "[include my_other_config.cfg]\n" +msgstr "" + +msgid "" +"[stepper_z1]\n" +"#step_pin:\n" +"#dir_pin:\n" +"#enable_pin:\n" +"#microsteps:\n" +"#rotation_distance:\n" +"# See the \"stepper\" section for the definition of the above parameters.\n" +"#endstop_pin:\n" +"# If an endstop_pin is defined for the additional stepper then the\n" +"# stepper will home until the endstop is triggered. Otherwise, the\n" +"# stepper will home until the endstop on the primary stepper for the\n" +"# axis is triggered.\n" +msgstr "" + +msgid "" +"[manual_stepper my_stepper]\n" +"#step_pin:\n" +"#dir_pin:\n" +"#enable_pin:\n" +"#microsteps:\n" +"#rotation_distance:\n" +"# See the \"stepper\" section for a description of these parameters.\n" +"#velocity:\n" +"# Set the default velocity (in mm/s) for the stepper. This value\n" +"# will be used if a MANUAL_STEPPER command does not specify a SPEED\n" +"# parameter. The default is 5mm/s.\n" +"#accel:\n" +"# Set the default acceleration (in mm/s^2) for the stepper. An\n" +"# acceleration of zero will result in no acceleration. This value\n" +"# will be used if a MANUAL_STEPPER command does not specify an ACCEL\n" +"# parameter. The default is zero.\n" +"#endstop_pin:\n" +"# Endstop switch detection pin. If specified, then one may perform\n" +"# \"homing moves\" by adding a STOP_ON_ENDSTOP parameter to\n" +"# MANUAL_STEPPER movement commands.\n" +msgstr "" + +msgid "" +"[verify_heater heater_config_name]\n" +"#max_error: 120\n" +"# The maximum \"cumulative temperature error\" before raising an\n" +"# error. Smaller values result in stricter checking and larger\n" +"# values allow for more time before an error is reported.\n" +"# Specifically, the temperature is inspected once a second and if it\n" +"# is close to the target temperature then an internal \"error\n" +"# counter\" is reset; otherwise, if the temperature is below the\n" +"# target range then the counter is increased by the amount the\n" +"# reported temperature differs from that range. Should the counter\n" +"# exceed this \"max_error\" then an error is raised. The default is\n" +"# 120.\n" +"#check_gain_time:\n" +"# This controls heater verification during initial heating. Smaller\n" +"# values result in stricter checking and larger values allow for\n" +"# more time before an error is reported. Specifically, during\n" +"# initial heating, as long as the heater increases in temperature\n" +"# within this time frame (specified in seconds) then the internal\n" +"# \"error counter\" is reset. The default is 20 seconds for extruders\n" +"# and 60 seconds for heater_bed.\n" +"#hysteresis: 5\n" +"# The maximum temperature difference (in Celsius) to a target\n" +"# temperature that is considered in range of the target. This\n" +"# controls the max_error range check. It is rare to customize this\n" +"# value. The default is 5.\n" +"#heating_gain: 2\n" +"# The minimum temperature (in Celsius) that the heater must increase\n" +"# by during the check_gain_time check. It is rare to customize this\n" +"# value. The default is 2.\n" +msgstr "" + +msgid "" +"[homing_heaters]\n" +"#steppers:\n" +"# A comma separated list of steppers that should cause heaters to be\n" +"# disabled. The default is to disable heaters for any homing/probing\n" +"# move.\n" +"# Typical example: stepper_z\n" +"#heaters:\n" +"# A comma separated list of heaters to disable during homing/probing\n" +"# moves. The default is to disable all heaters.\n" +"# Typical example: extruder, heater_bed\n" +msgstr "" + +msgid "" +"[thermistor my_thermistor]\n" +"#temperature1:\n" +"#resistance1:\n" +"#temperature2:\n" +"#resistance2:\n" +"#temperature3:\n" +"#resistance3:\n" +"# Three resistance measurements (in Ohms) at the given temperatures\n" +"# (in Celsius). The three measurements will be used to calculate the\n" +"# Steinhart-Hart coefficients for the thermistor. These parameters\n" +"# must be provided when using Steinhart-Hart to define the\n" +"# thermistor.\n" +"#beta:\n" +"# Alternatively, one may define temperature1, resistance1, and beta\n" +"# to define the thermistor parameters. This parameter must be\n" +"# provided when using \"beta\" to define the thermistor.\n" +msgstr "" + +msgid "" +"[adc_temperature my_sensor]\n" +"#temperature1:\n" +"#voltage1:\n" +"#temperature2:\n" +"#voltage2:\n" +"#...\n" +"# A set of temperatures (in Celsius) and voltages (in Volts) to use\n" +"# as reference when converting a temperature. A heater section using\n" +"# this sensor may also specify adc_voltage and voltage_offset\n" +"# parameters to define the ADC voltage (see \"Common temperature\n" +"# amplifiers\" section for details). At least two measurements must\n" +"# be provided.\n" +"#temperature1:\n" +"#resistance1:\n" +"#temperature2:\n" +"#resistance2:\n" +"#...\n" +"# Alternatively one may specify a set of temperatures (in Celsius)\n" +"# and resistance (in Ohms) to use as reference when converting a\n" +"# temperature. A heater section using this sensor may also specify a\n" +"# pullup_resistor parameter (see \"extruder\" section for details). At\n" +"# least two measurements must be provided.\n" +msgstr "" + +msgid "" +"[heater_generic my_generic_heater]\n" +"#gcode_id:\n" +"# The id to use when reporting the temperature in the M105 command.\n" +"# This parameter must be provided.\n" +"#heater_pin:\n" +"#max_power:\n" +"#sensor_type:\n" +"#sensor_pin:\n" +"#smooth_time:\n" +"#control:\n" +"#pid_Kp:\n" +"#pid_Ki:\n" +"#pid_Kd:\n" +"#pwm_cycle_time:\n" +"#min_temp:\n" +"#max_temp:\n" +"# See the \"extruder\" section for the definition of the above\n" +"# parameters.\n" +msgstr "" + +msgid "" +"[temperature_sensor my_sensor]\n" +"#sensor_type:\n" +"#sensor_pin:\n" +"#min_temp:\n" +"#max_temp:\n" +"# See the \"extruder\" section for the definition of the above\n" +"# parameters.\n" +"#gcode_id:\n" +"# See the \"heater_generic\" section for the definition of this\n" +"# parameter.\n" +msgstr "" + +msgid "" +"sensor_type:\n" +"# One of \"PT100 INA826\", \"AD595\", \"AD597\", \"AD8494\", \"AD8495\",\n" +"# \"AD8496\", or \"AD8497\".\n" +"sensor_pin:\n" +"# Analog input pin connected to the sensor. This parameter must be\n" +"# provided.\n" +"#adc_voltage: 5.0\n" +"# The ADC comparison voltage (in Volts). The default is 5 volts.\n" +"#voltage_offset: 0\n" +"# The ADC voltage offset (in Volts). The default is 0.\n" +msgstr "" + +msgid "" +"sensor_type: PT1000\n" +"sensor_pin:\n" +"# Analog input pin connected to the sensor. This parameter must be\n" +"# provided.\n" +"#pullup_resistor: 4700\n" +"# The resistance (in ohms) of the pullup attached to the sensor. The\n" +"# default is 4700 ohms.\n" +msgstr "" + +msgid "" +"sensor_type:\n" +"# One of \"MAX6675\", \"MAX31855\", \"MAX31856\", or \"MAX31865\".\n" +"sensor_pin:\n" +"# The chip select line for the sensor chip. This parameter must be\n" +"# provided.\n" +"#spi_speed: 4000000\n" +"# The SPI speed (in hz) to use when communicating with the chip.\n" +"# The default is 4000000.\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#tc_type: K\n" +"#tc_use_50Hz_filter: False\n" +"#tc_averaging_count: 1\n" +"# The above parameters control the sensor parameters of MAX31856\n" +"# chips. The defaults for each parameter are next to the parameter\n" +"# name in the above list.\n" +"#rtd_nominal_r: 100\n" +"#rtd_reference_r: 430\n" +"#rtd_num_of_wires: 2\n" +"#rtd_use_50Hz_filter: False\n" +"# The above parameters control the sensor parameters of MAX31865\n" +"# chips. The defaults for each parameter are next to the parameter\n" +"# name in the above list.\n" +msgstr "" + +msgid "" +"sensor_type: temperature_mcu\n" +"#sensor_mcu: mcu\n" +"# The micro-controller to read from. The default is \"mcu\".\n" +"#sensor_temperature1:\n" +"#sensor_adc1:\n" +"# Specify the above two parameters (a temperature in Celsius and an\n" +"# ADC value as a float between 0.0 and 1.0) to calibrate the\n" +"# micro-controller temperature. This may improve the reported\n" +"# temperature accuracy on some chips. A typical way to obtain this\n" +"# calibration information is to completely remove power from the\n" +"# printer for a few hours (to ensure it is at the ambient\n" +"# temperature), then power it up and use the QUERY_ADC command to\n" +"# obtain an ADC measurement. Use some other temperature sensor on\n" +"# the printer to find the corresponding ambient temperature. The\n" +"# default is to use the factory calibration data on the\n" +"# micro-controller (if applicable) or the nominal values from the\n" +"# micro-controller specification.\n" +"#sensor_temperature2:\n" +"#sensor_adc2:\n" +"# If sensor_temperature1/sensor_adc1 is specified then one may also\n" +"# specify sensor_temperature2/sensor_adc2 calibration data. Doing so\n" +"# may provide calibrated \"temperature slope\" information. The\n" +"# default is to use the factory calibration data on the\n" +"# micro-controller (if applicable) or the nominal values from the\n" +"# micro-controller specification.\n" +msgstr "" + +msgid "" +"sensor_type: temperature_host\n" +"#sensor_path:\n" +"# The path to temperature system file. The default is\n" +"# \"/sys/class/thermal/thermal_zone0/temp\" which is the temperature\n" +"# system file on a Raspberry Pi computer.\n" +msgstr "" + +msgid "" +"sensor_type: DS18B20\n" +"serial_no:\n" +"# Each 1-wire device has a unique serial number used to identify the device,\n" +"# usually in the format 28-031674b175ff. This parameter must be provided.\n" +"# Attached 1-wire devices can be listed using the following Linux command:\n" +"# ls /sys/bus/w1/devices/\n" +"#ds18_report_time:\n" +"# Interval in seconds between readings. Default is 3.0, with a minimum of 1.0\n" +"#sensor_mcu:\n" +"# The micro-controller to read from. Must be the host_mcu\n" +msgstr "" + +msgid "" +"[servo my_servo]\n" +"pin:\n" +"# PWM output pin controlling the servo. This parameter must be\n" +"# provided.\n" +"#maximum_servo_angle: 180\n" +"# The maximum angle (in degrees) that this servo can be set to. The\n" +"# default is 180 degrees.\n" +"#minimum_pulse_width: 0.001\n" +"# The minimum pulse width time (in seconds). This should correspond\n" +"# with an angle of 0 degrees. The default is 0.001 seconds.\n" +"#maximum_pulse_width: 0.002\n" +"# The maximum pulse width time (in seconds). This should correspond\n" +"# with an angle of maximum_servo_angle. The default is 0.002\n" +"# seconds.\n" +"#initial_angle:\n" +"# Initial angle (in degrees) to set the servo to. The default is to\n" +"# not send any signal at startup.\n" +"#initial_pulse_width:\n" +"# Initial pulse width time (in seconds) to set the servo to. (This\n" +"# is only valid if initial_angle is not set.) The default is to not\n" +"# send any signal at startup.\n" +msgstr "" + +msgid "" +"[gcode_button my_gcode_button]\n" +"pin:\n" +"# The pin on which the button is connected. This parameter must be\n" +"# provided.\n" +"#analog_range:\n" +"# Two comma separated resistances (in Ohms) specifying the minimum\n" +"# and maximum resistance range for the button. If analog_range is\n" +"# provided then the pin must be an analog capable pin. The default\n" +"# is to use digital gpio for the button.\n" +"#analog_pullup_resistor:\n" +"# The pullup resistance (in Ohms) when analog_range is specified.\n" +"# The default is 4700 ohms.\n" +"#press_gcode:\n" +"# A list of G-Code commands to execute when the button is pressed.\n" +"# G-Code templates are supported. This parameter must be provided.\n" +"#release_gcode:\n" +"# A list of G-Code commands to execute when the button is released.\n" +"# G-Code templates are supported. The default is to not run any\n" +"# commands on a button release.\n" +msgstr "" + +msgid "" +"[output_pin my_pin]\n" +"pin:\n" +"# The pin to configure as an output. This parameter must be\n" +"# provided.\n" +"#pwm: False\n" +"# Set if the output pin should be capable of pulse-width-modulation.\n" +"# If this is true, the value fields should be between 0 and 1; if it\n" +"# is false the value fields should be either 0 or 1. The default is\n" +"# False.\n" +"#static_value:\n" +"# If this is set, then the pin is assigned to this value at startup\n" +"# and the pin can not be changed during runtime. A static pin uses\n" +"# slightly less ram in the micro-controller. The default is to use\n" +"# runtime configuration of pins.\n" +"#value:\n" +"# The value to initially set the pin to during MCU configuration.\n" +"# The default is 0 (for low voltage).\n" +"#shutdown_value:\n" +"# The value to set the pin to on an MCU shutdown event. The default\n" +"# is 0 (for low voltage).\n" +"#maximum_mcu_duration:\n" +"# The maximum duration a non-shutdown value may be driven by the MCU\n" +"# without an acknowledge from the host.\n" +"# If host can not keep up with an update, the MCU will shutdown\n" +"# and set all pins to their respective shutdown values.\n" +"# Default: 0 (disabled)\n" +"# Usual values are around 5 seconds.\n" +"#cycle_time: 0.100\n" +"# The amount of time (in seconds) per PWM cycle. It is recommended\n" +"# this be 10 milliseconds or greater when using software based PWM.\n" +"# The default is 0.100 seconds for pwm pins.\n" +"#hardware_pwm: False\n" +"# Enable this to use hardware PWM instead of software PWM. When\n" +"# using hardware PWM the actual cycle time is constrained by the\n" +"# implementation and may be significantly different than the\n" +"# requested cycle_time. The default is False.\n" +"#scale:\n" +"# This parameter can be used to alter how the 'value' and\n" +"# 'shutdown_value' parameters are interpreted for pwm pins. If\n" +"# provided, then the 'value' parameter should be between 0.0 and\n" +"# 'scale'. This may be useful when configuring a PWM pin that\n" +"# controls a stepper voltage reference. The 'scale' can be set to\n" +"# the equivalent stepper amperage if the PWM were fully enabled, and\n" +"# then the 'value' parameter can be specified using the desired\n" +"# amperage for the stepper. The default is to not scale the 'value'\n" +"# parameter.\n" +msgstr "" + +msgid "" +"[static_digital_output my_output_pins]\n" +"pins:\n" +"# A comma separated list of pins to be set as GPIO output pins. The\n" +"# pin will be set to a high level unless the pin name is prefaced\n" +"# with \"!\". This parameter must be provided.\n" +msgstr "" + +msgid "" +"[multi_pin my_multi_pin]\n" +"pins:\n" +"# A comma separated list of pins associated with this alias. This\n" +"# parameter must be provided.\n" +msgstr "" + +msgid "" +"[ad5206 my_digipot]\n" +"enable_pin:\n" +"# The pin corresponding to the AD5206 chip select line. This pin\n" +"# will be set to low at the start of SPI messages and raised to high\n" +"# after the message completes. This parameter must be provided.\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#channel_1:\n" +"#channel_2:\n" +"#channel_3:\n" +"#channel_4:\n" +"#channel_5:\n" +"#channel_6:\n" +"# The value to statically set the given AD5206 channel to. This is\n" +"# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +"# highest resistance and 0.0 being the lowest resistance. However,\n" +"# the range may be changed with the 'scale' parameter (see below).\n" +"# If a channel is not specified then it is left unconfigured.\n" +"#scale:\n" +"# This parameter can be used to alter how the 'channel_x' parameters\n" +"# are interpreted. If provided, then the 'channel_x' parameters\n" +"# should be between 0.0 and 'scale'. This may be useful when the\n" +"# AD5206 is used to set stepper voltage references. The 'scale' can\n" +"# be set to the equivalent stepper amperage if the AD5206 were at\n" +"# its highest resistance, and then the 'channel_x' parameters can be\n" +"# specified using the desired amperage value for the stepper. The\n" +"# default is to not scale the 'channel_x' parameters.\n" +msgstr "" + +msgid "" +"[mcp4018 my_digipot]\n" +"scl_pin:\n" +"# The SCL \"clock\" pin. This parameter must be provided.\n" +"sda_pin:\n" +"# The SDA \"data\" pin. This parameter must be provided.\n" +"wiper:\n" +"# The value to statically set the given MCP4018 \"wiper\" to. This is\n" +"# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +"# highest resistance and 0.0 being the lowest resistance. However,\n" +"# the range may be changed with the 'scale' parameter (see below).\n" +"# This parameter must be provided.\n" +"#scale:\n" +"# This parameter can be used to alter how the 'wiper' parameter is\n" +"# interpreted. If provided, then the 'wiper' parameter should be\n" +"# between 0.0 and 'scale'. This may be useful when the MCP4018 is\n" +"# used to set stepper voltage references. The 'scale' can be set to\n" +"# the equivalent stepper amperage if the MCP4018 is at its highest\n" +"# resistance, and then the 'wiper' parameter can be specified using\n" +"# the desired amperage value for the stepper. The default is to not\n" +"# scale the 'wiper' parameter.\n" +msgstr "" + +msgid "" +"[display]\n" +"lcd_type: hd44780\n" +"# Set to \"hd44780\" for hd44780 displays.\n" +"rs_pin:\n" +"e_pin:\n" +"d4_pin:\n" +"d5_pin:\n" +"d6_pin:\n" +"d7_pin:\n" +"# The pins connected to an hd44780 type lcd. These parameters must\n" +"# be provided.\n" +"#hd44780_protocol_init: True\n" +"# Perform 8-bit/4-bit protocol initialization on an hd44780 display.\n" +"# This is necessary on real hd44780 devices. However, one may need\n" +"# to disable this on some \"clone\" devices. The default is True.\n" +"#line_length:\n" +"# Set the number of characters per line for an hd44780 type lcd.\n" +"# Possible values are 20 (default) and 16. The number of lines is\n" +"# fixed to 4.\n" +"...\n" +msgstr "" + +msgid "" +"[display]\n" +"lcd_type: hd44780_spi\n" +"# Set to \"hd44780_spi\" for hd44780_spi displays.\n" +"latch_pin:\n" +"spi_software_sclk_pin:\n" +"spi_software_mosi_pin:\n" +"spi_software_miso_pin:\n" +"# The pins connected to the shift register controlling the display.\n" +"# The spi_software_miso_pin needs to be set to an unused pin of the\n" +"# printer mainboard as the shift register does not have a MISO pin,\n" +"# but the software spi implementation requires this pin to be\n" +"# configured.\n" +"#hd44780_protocol_init: True\n" +"# Perform 8-bit/4-bit protocol initialization on an hd44780 display.\n" +"# This is necessary on real hd44780 devices. However, one may need\n" +"# to disable this on some \"clone\" devices. The default is True.\n" +"#line_length:\n" +"# Set the number of characters per line for an hd44780 type lcd.\n" +"# Possible values are 20 (default) and 16. The number of lines is\n" +"# fixed to 4.\n" +"...\n" +msgstr "" + +msgid "" +"[display]\n" +"lcd_type: st7920\n" +"# Set to \"st7920\" for st7920 displays.\n" +"cs_pin:\n" +"sclk_pin:\n" +"sid_pin:\n" +"# The pins connected to an st7920 type lcd. These parameters must be\n" +"# provided.\n" +"...\n" +msgstr "" + +msgid "" +"[display]\n" +"lcd_type: emulated_st7920\n" +"# Set to \"emulated_st7920\" for emulated_st7920 displays.\n" +"en_pin:\n" +"spi_software_sclk_pin:\n" +"spi_software_mosi_pin:\n" +"spi_software_miso_pin:\n" +"# The pins connected to an emulated_st7920 type lcd. The en_pin\n" +"# corresponds to the cs_pin of the st7920 type lcd,\n" +"# spi_software_sclk_pin corresponds to sclk_pin and\n" +"# spi_software_mosi_pin corresponds to sid_pin. The\n" +"# spi_software_miso_pin needs to be set to an unused pin of the\n" +"# printer mainboard as the st7920 as no MISO pin but the software\n" +"# spi implementation requires this pin to be configured.\n" +"...\n" +msgstr "" + +msgid "" +"[display]\n" +"lcd_type: uc1701\n" +"# Set to \"uc1701\" for uc1701 displays.\n" +"cs_pin:\n" +"a0_pin:\n" +"# The pins connected to a uc1701 type lcd. These parameters must be\n" +"# provided.\n" +"#rst_pin:\n" +"# The pin connected to the \"rst\" pin on the lcd. If it is not\n" +"# specified then the hardware must have a pull-up on the\n" +"# corresponding lcd line.\n" +"#contrast:\n" +"# The contrast to set. The value may range from 0 to 63 and the\n" +"# default is 40.\n" +"...\n" +msgstr "" + +msgid "" +"[display_data my_group_name my_data_name]\n" +"position:\n" +"# Comma separated row and column of the display position that should\n" +"# be used to display the information. This parameter must be\n" +"# provided.\n" +"text:\n" +"# The text to show at the given position. This field is evaluated\n" +"# using command templates (see docs/Command_Templates.md). This\n" +"# parameter must be provided.\n" +msgstr "" + +msgid "" +"[display_glyph my_display_glyph]\n" +"#data:\n" +"# The display data, stored as 16 lines consisting of 16 bits (1 per\n" +"# pixel) where '.' is a blank pixel and '*' is an on pixel (e.g.,\n" +"# \"****************\" to display a solid horizontal line).\n" +"# Alternatively, one can use '0' for a blank pixel and '1' for an on\n" +"# pixel. Put each display line into a separate config line. The\n" +"# glyph must consist of exactly 16 lines with 16 bits each. This\n" +"# parameter is optional.\n" +"#hd44780_data:\n" +"# Glyph to use on 20x4 hd44780 displays. The glyph must consist of\n" +"# exactly 8 lines with 5 bits each. This parameter is optional.\n" +"#hd44780_slot:\n" +"# The hd44780 hardware index (0..7) to store the glyph at. If\n" +"# multiple distinct images use the same slot then make sure to only\n" +"# use one of those images in any given screen. This parameter is\n" +"# required if hd44780_data is specified.\n" +msgstr "" + +msgid "" +"[display my_extra_display]\n" +"# See the \"display\" section for available parameters.\n" +msgstr "" + +msgid "" +"# Common parameters available for all menu config sections.\n" +"#[menu __some_list __some_name]\n" +"#type: disabled\n" +"# Permanently disabled menu element, only required attribute is 'type'.\n" +"# Allows you to easily disable/hide existing menu items.\n" +"\n" +"#[menu some_name]\n" +"#type:\n" +"# One of command, input, list, text:\n" +"# command - basic menu element with various script triggers\n" +"# input - same like 'command' but has value changing capabilities.\n" +"# Press will start/stop edit mode.\n" +"# list - it allows for menu items to be grouped together in a\n" +"# scrollable list. Add to the list by creating menu\n" +"# configurations using \"some_list\" as a prefix - for\n" +"# example: [menu some_list some_item_in_the_list]\n" +"# vsdlist - same as 'list' but will append files from virtual sdcard\n" +"# (will be removed in the future)\n" +"#name:\n" +"# Name of menu item - evaluated as a template.\n" +"#enable:\n" +"# Template that evaluates to True or False.\n" +"#index:\n" +"# Position where an item needs to be inserted in list. By default\n" +"# the item is added at the end.\n" +"\n" +"#[menu some_list]\n" +"#type: list\n" +"#name:\n" +"#enable:\n" +"# See above for a description of these parameters.\n" +"\n" +"#[menu some_list some_command]\n" +"#type: command\n" +"#name:\n" +"#enable:\n" +"# See above for a description of these parameters.\n" +"#gcode:\n" +"# Script to run on button click or long click. Evaluated as a\n" +"# template.\n" +"\n" +"#[menu some_list some_input]\n" +"#type: input\n" +"#name:\n" +"#enable:\n" +"# See above for a description of these parameters.\n" +"#input:\n" +"# Initial value to use when editing - evaluated as a template.\n" +"# Result must be float.\n" +"#input_min:\n" +"# Minimum value of range - evaluated as a template. Default -99999.\n" +"#input_max:\n" +"# Maximum value of range - evaluated as a template. Default 99999.\n" +"#input_step:\n" +"# Editing step - Must be a positive integer or float value. It has\n" +"# internal fast rate step. When \"(input_max - input_min) /\n" +"# input_step > 100\" then fast rate step is 10 * input_step else fast\n" +"# rate step is same input_step.\n" +"#realtime:\n" +"# This attribute accepts static boolean value. When enabled then\n" +"# gcode script is run after each value change. The default is False.\n" +"#gcode:\n" +"# Script to run on button click, long click or value change.\n" +"# Evaluated as a template. The button click will trigger the edit\n" +"# mode start or end.\n" +msgstr "" + +msgid "" +"[filament_switch_sensor my_sensor]\n" +"#pause_on_runout: True\n" +"# When set to True, a PAUSE will execute immediately after a runout\n" +"# is detected. Note that if pause_on_runout is False and the\n" +"# runout_gcode is omitted then runout detection is disabled. Default\n" +"# is True.\n" +"#runout_gcode:\n" +"# A list of G-Code commands to execute after a filament runout is\n" +"# detected. See docs/Command_Templates.md for G-Code format. If\n" +"# pause_on_runout is set to True this G-Code will run after the\n" +"# PAUSE is complete. The default is not to run any G-Code commands.\n" +"#insert_gcode:\n" +"# A list of G-Code commands to execute after a filament insert is\n" +"# detected. See docs/Command_Templates.md for G-Code format. The\n" +"# default is not to run any G-Code commands, which disables insert\n" +"# detection.\n" +"#event_delay: 3.0\n" +"# The minimum amount of time in seconds to delay between events.\n" +"# Events triggered during this time period will be silently\n" +"# ignored. The default is 3 seconds.\n" +"#pause_delay: 0.5\n" +"# The amount of time to delay, in seconds, between the pause command\n" +"# dispatch and execution of the runout_gcode. It may be useful to\n" +"# increase this delay if OctoPrint exhibits strange pause behavior.\n" +"# Default is 0.5 seconds.\n" +"#switch_pin:\n" +"# The pin on which the switch is connected. This parameter must be\n" +"# provided.\n" +msgstr "" + +msgid "" +"[filament_motion_sensor my_sensor]\n" +"detection_length: 7.0\n" +"# The minimum length of filament pulled through the sensor to trigger\n" +"# a state change on the switch_pin\n" +"# Default is 7 mm.\n" +"extruder:\n" +"# The name of the extruder section this sensor is associated with.\n" +"# This parameter must be provided.\n" +"switch_pin:\n" +"#pause_on_runout:\n" +"#runout_gcode:\n" +"#insert_gcode:\n" +"#event_delay:\n" +"#pause_delay:\n" +"# See the \"filament_switch_sensor\" section for a description of the\n" +"# above parameters.\n" +msgstr "" + +msgid "" +"[tsl1401cl_filament_width_sensor]\n" +"#pin:\n" +"#default_nominal_filament_diameter: 1.75 # (mm)\n" +"# Maximum allowed filament diameter difference as mm.\n" +"#max_difference: 0.2\n" +"# The distance from sensor to the melting chamber as mm.\n" +"#measurement_delay: 100\n" +msgstr "" + +msgid "" +"[hall_filament_width_sensor]\n" +"adc1:\n" +"adc2:\n" +"# Analog input pins connected to the sensor. These parameters must\n" +"# be provided.\n" +"#cal_dia1: 1.50\n" +"#cal_dia2: 2.00\n" +"# The calibration values (in mm) for the sensors. The default is\n" +"# 1.50 for cal_dia1 and 2.00 for cal_dia2.\n" +"#raw_dia1: 9500\n" +"#raw_dia2: 10500\n" +"# The raw calibration values for the sensors. The default is 9500\n" +"# for raw_dia1 and 10500 for raw_dia2.\n" +"#default_nominal_filament_diameter: 1.75\n" +"# The nominal filament diameter. This parameter must be provided.\n" +"#max_difference: 0.200\n" +"# Maximum allowed filament diameter difference in millimeters (mm).\n" +"# If difference between nominal filament diameter and sensor output\n" +"# is more than +- max_difference, extrusion multiplier is set back\n" +"# to %100. The default is 0.200.\n" +"#measurement_delay: 70\n" +"# The distance from sensor to the melting chamber/hot-end in\n" +"# millimeters (mm). The filament between the sensor and the hot-end\n" +"# will be treated as the default_nominal_filament_diameter. Host\n" +"# module works with FIFO logic. It keeps each sensor value and\n" +"# position in an array and POP them back in correct position. This\n" +"# parameter must be provided.\n" +"#enable: False\n" +"# Sensor enabled or disabled after power on. The default is to\n" +"# disable.\n" +"#measurement_interval: 10\n" +"# The approximate distance (in mm) between sensor readings. The\n" +"# default is 10mm.\n" +"#logging: False\n" +"# Out diameter to terminal and klipper.log can be turn on|of by\n" +"# command.\n" +"#min_diameter: 1.0\n" +"# Minimal diameter for trigger virtual filament_switch_sensor.\n" +"#use_current_dia_while_delay: False\n" +"# Use the current diameter instead of the nominal diameter while\n" +"# the measurement delay has not run through.\n" +"#pause_on_runout:\n" +"#runout_gcode:\n" +"#insert_gcode:\n" +"#event_delay:\n" +"#pause_delay:\n" +"# See the \"filament_switch_sensor\" section for a description of the\n" +"# above parameters.\n" +msgstr "" + +msgid "" +"[adc_scaled my_name]\n" +"vref_pin:\n" +"# The ADC pin to use for VREF monitoring. This parameter must be\n" +"# provided.\n" +"vssa_pin:\n" +"# The ADC pin to use for VSSA monitoring. This parameter must be\n" +"# provided.\n" +"#smooth_time: 2.0\n" +"# A time value (in seconds) over which the vref and vssa\n" +"# measurements will be smoothed to reduce the impact of measurement\n" +"# noise. The default is 2 seconds.\n" +msgstr "" + +msgid "" +"#spi_speed:\n" +"# The SPI speed (in hz) to use when communicating with the device.\n" +"# The default depends on the type of device.\n" +"#spi_bus:\n" +"# If the micro-controller supports multiple SPI busses then one may\n" +"# specify the micro-controller bus name here. The default depends on\n" +"# the type of micro-controller.\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# Specify the above parameters to use \"software based SPI\". This\n" +"# mode does not require micro-controller hardware support (typically\n" +"# any general purpose pins may be used). The default is to not use\n" +"# \"software spi\".\n" +msgstr "" + +msgid "[duplicate_pin_override]" +msgstr "" + +msgid "" +"This tool allows a single micro-controller pin to be defined multiple times " +"in a config file without normal error checking. This is intended for " +"diagnostic and debugging purposes. This section is not needed where Klipper " +"supports using the same pin multiple times, and using this override may " +"cause confusing and unexpected results." +msgstr "" + +msgid "" +"[duplicate_pin_override]\n" +"pins:\n" +"# A comma separated list of pins that may be used multiple times in\n" +"# a config file without normal error checks. This parameter must be\n" +"# provided.\n" +msgstr "" + +msgid "" +"SAMD SERCOM configuration to specify which pins to use on a given SERCOM. " +"One may define any number of sections with a \"samd_sercom\" prefix. Each " +"SERCOM must be configured prior to using it as SPI or I2C peripheral. Place " +"this config section above any other section that makes use of SPI or I2C " +"buses." +msgstr "" + +msgid "" +"[samd_sercom my_sercom]\n" +"sercom:\n" +"# The name of the sercom bus to configure in the micro-controller.\n" +"# Available names are \"sercom0\", \"sercom1\", etc.. This parameter\n" +"# must be provided.\n" +"tx_pin:\n" +"# MOSI pin for SPI communication, or SDA (data) pin for I2C\n" +"# communication. The pin must have a valid pinmux configuration\n" +"# for the given SERCOM peripheral. This parameter must be provided.\n" +"#rx_pin:\n" +"# MISO pin for SPI communication. This pin is not used for I2C\n" +"# communication (I2C uses tx_pin for both sending and receiving).\n" +"# The pin must have a valid pinmux configuration for the given\n" +"# SERCOM peripheral. This parameter is optional.\n" +"clk_pin:\n" +"# CLK pin for SPI communication, or SCL (clock) pin for I2C\n" +"# communication. The pin must have a valid pinmux configuration\n" +"# for the given SERCOM peripheral. This parameter must be provided.\n" +msgstr "" + +#: docs/Config_Reference.md:block 1 (header) +msgid "Configuration reference" +msgstr "" + +#: docs/Config_Reference.md:block 257 (paragraph) +msgid "" +"Controller cooling fan (one may define any number of sections with a " +"\"controller_fan\" prefix). A \"controller fan\" is a fan that will be " +"enabled whenever its associated heater or its associated stepper driver is " +"active. The fan will stop whenever an idle_timeout is reached to ensure no " +"overheating will occur after deactivating a watched component." +msgstr "" + +#: docs/Config_Reference.md:block 22 (paragraph) +msgid "" +"See the [rotation distance document](Rotation_Distance.md) for information " +"on calculating the `rotation_distance` parameter. See the [Multi-MCU " +"homing](Multi_MCU_Homing.md) document for information on homing using " +"multiple micro-controllers." +msgstr "" + +#: docs/Config_Reference.md:block 175 (code) +msgid "" +"[probe]\n" +"pin:\n" +"# Probe detection pin. If the pin is on a different microcontroller\n" +"# than the Z steppers then it enables \"multi-mcu homing\". This\n" +"# parameter must be provided.\n" +"#deactivate_on_each_sample: True\n" +"# This determines if Klipper should execute deactivation gcode\n" +"# between each probe attempt when performing a multiple probe\n" +"# sequence. The default is True.\n" +"#x_offset: 0.0\n" +"# The distance (in mm) between the probe and the nozzle along the\n" +"# x-axis. The default is 0.\n" +"#y_offset: 0.0\n" +"# The distance (in mm) between the probe and the nozzle along the\n" +"# y-axis. The default is 0.\n" +"z_offset:\n" +"# The distance (in mm) between the bed and the nozzle when the probe\n" +"# triggers. This parameter must be provided.\n" +"#speed: 5.0\n" +"# Speed (in mm/s) of the Z axis when probing. The default is 5mm/s.\n" +"#samples: 1\n" +"# The number of times to probe each point. The probed z-values will\n" +"# be averaged. The default is to probe 1 time.\n" +"#sample_retract_dist: 2.0\n" +"# The distance (in mm) to lift the toolhead between each sample (if\n" +"# sampling more than once). The default is 2mm.\n" +"#lift_speed:\n" +"# Speed (in mm/s) of the Z axis when lifting the probe between\n" +"# samples. The default is to use the same value as the 'speed'\n" +"# parameter.\n" +"#samples_result: average\n" +"# The calculation method when sampling more than once - either\n" +"# \"median\" or \"average\". The default is average.\n" +"#samples_tolerance: 0.100\n" +"# The maximum Z distance (in mm) that a sample may differ from other\n" +"# samples. If this tolerance is exceeded then either an error is\n" +"# reported or the attempt is restarted (see\n" +"# samples_tolerance_retries). The default is 0.100mm.\n" +"#samples_tolerance_retries: 0\n" +"# The number of times to retry if a sample is found that exceeds\n" +"# samples_tolerance. On a retry, all current samples are discarded\n" +"# and the probe attempt is restarted. If a valid set of samples are\n" +"# not obtained in the given number of retries then an error is\n" +"# reported. The default is zero which causes an error to be reported\n" +"# on the first sample that exceeds samples_tolerance.\n" +"#activate_gcode:\n" +"# A list of G-Code commands to execute prior to each probe attempt.\n" +"# See docs/Command_Templates.md for G-Code format. This may be\n" +"# useful if the probe needs to be activated in some way. Do not\n" +"# issue any commands here that move the toolhead (eg, G1). The\n" +"# default is to not run any special G-Code commands on activation.\n" +"#deactivate_gcode:\n" +"# A list of G-Code commands to execute after each probe attempt\n" +"# completes. See docs/Command_Templates.md for G-Code format. Do not\n" +"# issue any commands here that move the toolhead. The default is to\n" +"# not run any special G-Code commands on deactivation.\n" +msgstr "" + +#: docs/Config_Reference.md:block 324 (code) +msgid "" +"[display]\n" +"lcd_type:\n" +"# The type of LCD chip in use. This may be \"hd44780\", \"hd44780_spi\",\n" +"# \"st7920\", \"emulated_st7920\", \"uc1701\", \"ssd1306\", or \"sh1106\".\n" +"# See the display sections below for information on each type and\n" +"# additional parameters they provide. This parameter must be\n" +"# provided.\n" +"#display_group:\n" +"# The name of the display_data group to show on the display. This\n" +"# controls the content of the screen (see the \"display_data\" section\n" +"# for more information). The default is _default_20x4 for hd44780\n" +"# displays and _default_16x4 for other displays.\n" +"#menu_timeout:\n" +"# Timeout for menu. Being inactive this amount of seconds will\n" +"# trigger menu exit or return to root menu when having autorun\n" +"# enabled. The default is 0 seconds (disabled)\n" +"#menu_root:\n" +"# Name of the main menu section to show when clicking the encoder\n" +"# on the home screen. The defaults is __main, and this shows the\n" +"# the default menus as defined in klippy/extras/display/menu.cfg\n" +"#menu_reverse_navigation:\n" +"# When enabled it will reverse up and down directions for list\n" +"# navigation. The default is False. This parameter is optional.\n" +"#encoder_pins:\n" +"# The pins connected to encoder. 2 pins must be provided when using\n" +"# encoder. This parameter must be provided when using menu.\n" +"#encoder_steps_per_detent:\n" +"# How many steps the encoder emits per detent (\"click\"). If the\n" +"# encoder takes two detents to move between entries or moves two\n" +"# entries from one detent, try changing this. Allowed values are 2\n" +"# (half-stepping) or 4 (full-stepping). The default is 4.\n" +"#click_pin:\n" +"# The pin connected to 'enter' button or encoder 'click'. This\n" +"# parameter must be provided when using menu. The presence of an\n" +"# 'analog_range_click_pin' config parameter turns this parameter\n" +"# from digital to analog.\n" +"#back_pin:\n" +"# The pin connected to 'back' button. This parameter is optional,\n" +"# menu can be used without it. The presence of an\n" +"# 'analog_range_back_pin' config parameter turns this parameter from\n" +"# digital to analog.\n" +"#up_pin:\n" +"# The pin connected to 'up' button. This parameter must be provided\n" +"# when using menu without encoder. The presence of an\n" +"# 'analog_range_up_pin' config parameter turns this parameter from\n" +"# digital to analog.\n" +"#down_pin:\n" +"# The pin connected to 'down' button. This parameter must be\n" +"# provided when using menu without encoder. The presence of an\n" +"# 'analog_range_down_pin' config parameter turns this parameter from\n" +"# digital to analog.\n" +"#kill_pin:\n" +"# The pin connected to 'kill' button. This button will call\n" +"# emergency stop. The presence of an 'analog_range_kill_pin' config\n" +"# parameter turns this parameter from digital to analog.\n" +"#analog_pullup_resistor: 4700\n" +"# The resistance (in ohms) of the pullup attached to the analog\n" +"# button. The default is 4700 ohms.\n" +"#analog_range_click_pin:\n" +"# The resistance range for a 'enter' button. Range minimum and\n" +"# maximum comma-separated values must be provided when using analog\n" +"# button.\n" +"#analog_range_back_pin:\n" +"# The resistance range for a 'back' button. Range minimum and\n" +"# maximum comma-separated values must be provided when using analog\n" +"# button.\n" +"#analog_range_up_pin:\n" +"# The resistance range for a 'up' button. Range minimum and maximum\n" +"# comma-separated values must be provided when using analog button.\n" +"#analog_range_down_pin:\n" +"# The resistance range for a 'down' button. Range minimum and\n" +"# maximum comma-separated values must be provided when using analog\n" +"# button.\n" +"#analog_range_kill_pin:\n" +"# The resistance range for a 'kill' button. Range minimum and\n" +"# maximum comma-separated values must be provided when using analog\n" +"# button.\n" +msgstr "" + +#: docs/Config_Reference.md:block 221 (code) +msgid "" +"sensor_type:\n" +"# One of \"EPCOS 100K B57560G104F\", \"ATC Semitec 104GT-2\",\n" +"# \"ATC Semitec 104NT-4-R025H42G\", \"Generic 3950\",\n" +"# \"Honeywell 100K 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\",\n" +"# \"SliceEngineering 450\", or \"TDK NTCG104LH104JT1\"\n" +"sensor_pin:\n" +"# Analog input pin connected to the thermistor. This parameter must\n" +"# be provided.\n" +"#pullup_resistor: 4700\n" +"# The resistance (in ohms) of the pullup attached to the thermistor.\n" +"# The default is 4700 ohms.\n" +"#inline_resistor: 0\n" +"# The resistance (in ohms) of an extra (not heat varying) resistor\n" +"# that is placed inline with the thermistor. It is rare to set this.\n" +"# The default is 0 ohms.\n" +msgstr "" + +#: docs/Config_Reference.md:block 375 (paragraph) +msgid "" +"Hall filament width sensor (see [Hall Filament Width " +"Sensor](Hall_Filament_Width_Sensor.md))." +msgstr "" + +#: docs/Config_Reference.md:block 390 (paragraph) +msgid "" +"Replicape support - see the [beaglebone guide](Beaglebone.md) and the " +"[generic-replicape.cfg](../config/generic-replicape.cfg) file for an " +"example." +msgstr "" + +#: docs/Config_Reference.md:block 23 (code) +msgid "" +"[stepper_x]\n" +"step_pin:\n" +"# Step GPIO pin (triggered high). This parameter must be provided.\n" +"dir_pin:\n" +"# Direction GPIO pin (high indicates positive direction). This\n" +"# parameter must be provided.\n" +"enable_pin:\n" +"# Enable pin (default is enable high; use ! to indicate enable\n" +"# low). If this parameter is not provided then the stepper motor\n" +"# driver must always be enabled.\n" +"rotation_distance:\n" +"# Distance (in mm) that the axis travels with one full rotation of\n" +"# the stepper motor (or final gear if gear_ratio is specified).\n" +"# This parameter must be provided.\n" +"microsteps:\n" +"# The number of microsteps the stepper motor driver uses. This\n" +"# parameter must be provided.\n" +"#full_steps_per_rotation: 200\n" +"# The number of full steps for one rotation of the stepper motor.\n" +"# Set this to 200 for a 1.8 degree stepper motor or set to 400 for a\n" +"# 0.9 degree motor. The default is 200.\n" +"#gear_ratio:\n" +"# The gear ratio if the stepper motor is connected to the axis via a\n" +"# gearbox. For example, one may specify \"5:1\" if a 5 to 1 gearbox is\n" +"# in use. If the axis has multiple gearboxes one may specify a comma\n" +"# separated list of gear ratios (for example, \"57:11, 2:1\"). If a\n" +"# gear_ratio is specified then rotation_distance specifies the\n" +"# distance the axis travels for one full rotation of the final gear.\n" +"# The default is to not use a gear ratio.\n" +"#step_pulse_duration:\n" +"# The minimum time between the step pulse signal edge and the\n" +"# following \"unstep\" signal edge. This is also used to set the\n" +"# minimum time between a step pulse and a direction change signal.\n" +"# The default is 0.000000100 (100ns) for TMC steppers that are\n" +"# configured in UART or SPI mode, and the default is 0.000002 (which\n" +"# is 2us) for all other steppers.\n" +"endstop_pin:\n" +"# Endstop switch detection pin. If this endstop pin is on a\n" +"# different mcu than the stepper motor then it enables \"multi-mcu\n" +"# homing\". This parameter must be provided for the X, Y, and Z\n" +"# steppers on cartesian style printers.\n" +"#position_min: 0\n" +"# Minimum valid distance (in mm) the user may command the stepper to\n" +"# move to. The default is 0mm.\n" +"position_endstop:\n" +"# Location of the endstop (in mm). This parameter must be provided\n" +"# for the X, Y, and Z steppers on cartesian style printers.\n" +"position_max:\n" +"# Maximum valid distance (in mm) the user may command the stepper to\n" +"# move to. This parameter must be provided for the X, Y, and Z\n" +"# steppers on cartesian style printers.\n" +"#homing_speed: 5.0\n" +"# Maximum velocity (in mm/s) of the stepper when homing. The default\n" +"# is 5mm/s.\n" +"#homing_retract_dist: 5.0\n" +"# Distance to backoff (in mm) before homing a second time during\n" +"# homing. Set this to zero to disable the second home. The default\n" +"# is 5mm.\n" +"#homing_retract_speed:\n" +"# Speed to use on the retract move after homing in case this should\n" +"# be different from the homing speed, which is the default for this\n" +"# parameter\n" +"#second_homing_speed:\n" +"# Velocity (in mm/s) of the stepper when performing the second home.\n" +"# The default is homing_speed/2.\n" +"#homing_positive_dir:\n" +"# If true, homing will cause the stepper to move in a positive\n" +"# direction (away from zero); if false, home towards zero. It is\n" +"# better to use the default than to specify this parameter. The\n" +"# default is true if position_endstop is near position_max and false\n" +"# if near position_min.\n" +msgstr "" + +#: docs/Config_Reference.md:block 31 (code) +msgid "" +"[printer]\n" +"kinematics: delta\n" +"max_z_velocity:\n" +"# For delta printers this limits the maximum velocity (in mm/s) of\n" +"# moves with z axis movement. This setting can be used to reduce the\n" +"# maximum speed of up/down moves (which require a higher step rate\n" +"# than other moves on a delta printer). The default is to use\n" +"# max_velocity for max_z_velocity.\n" +"#max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. Setting this may be useful if the printer can reach higher\n" +"# acceleration on XY moves than Z moves (eg, when using input shaper).\n" +"# The default is to use max_accel for max_z_accel.\n" +"#minimum_z_position: 0\n" +"# The minimum Z position that the user may command the head to move\n" +"# to. The default is 0.\n" +"delta_radius:\n" +"# Radius (in mm) of the horizontal circle formed by the three linear\n" +"# axis towers. This parameter may also be calculated as:\n" +"# delta_radius = smooth_rod_offset - effector_offset - carriage_offset\n" +"# This parameter must be provided.\n" +"#print_radius:\n" +"# The radius (in mm) of valid toolhead XY coordinates. One may use\n" +"# this setting to customize the range checking of toolhead moves. If\n" +"# a large value is specified here then it may be possible to command\n" +"# the toolhead into a collision with a tower. The default is to use\n" +"# delta_radius for print_radius (which would normally prevent a\n" +"# tower collision).\n" +"\n" +"# The stepper_a section describes the stepper controlling the front\n" +"# left tower (at 210 degrees). This section also controls the homing\n" +"# parameters (homing_speed, homing_retract_dist) for all towers.\n" +"[stepper_a]\n" +"position_endstop:\n" +"# Distance (in mm) between the nozzle and the bed when the nozzle is\n" +"# in the center of the build area and the endstop triggers. This\n" +"# parameter must be provided for stepper_a; for stepper_b and\n" +"# stepper_c this parameter defaults to the value specified for\n" +"# stepper_a.\n" +"arm_length:\n" +"# Length (in mm) of the diagonal rod that connects this tower to the\n" +"# print head. This parameter must be provided for stepper_a; for\n" +"# stepper_b and stepper_c this parameter defaults to the value\n" +"# specified for stepper_a.\n" +"#angle:\n" +"# This option specifies the angle (in degrees) that the tower is\n" +"# at. The default is 210 for stepper_a, 330 for stepper_b, and 90\n" +"# for stepper_c.\n" +"\n" +"# The stepper_b section describes the stepper controlling the front\n" +"# right tower (at 330 degrees).\n" +"[stepper_b]\n" +"\n" +"# The stepper_c section describes the stepper controlling the rear\n" +"# tower (at 90 degrees).\n" +"[stepper_c]\n" +"\n" +"# The delta_calibrate section enables a DELTA_CALIBRATE extended\n" +"# g-code command that can calibrate the tower endstop positions and\n" +"# angles.\n" +"[delta_calibrate]\n" +"radius:\n" +"# Radius (in mm) of the area that may be probed. This is the radius\n" +"# of nozzle coordinates to be probed; if using an automatic probe\n" +"# with an XY offset then choose a radius small enough so that the\n" +"# probe always fits over the bed. This parameter must be provided.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +msgstr "" + +#: docs/Config_Reference.md:block 232 (paragraph) +msgid "" +"BMP280/BME280/BME680 two wire interface (I2C) environmental sensors. Note " +"that these sensors are not intended for use with extruders and heater beds, " +"but rather for monitoring ambient temperature (C), pressure (hPa), relative " +"humidity and in case of the BME680 gas level. See [sample-" +"macros.cfg](../config/sample-macros.cfg) for a gcode_macro that may be used " +"to report pressure and humidity in addition to temperature." +msgstr "" + +#: docs/Config_Reference.md:block 304 (code) +msgid "" +"[tmc2660 stepper_x]\n" +"cs_pin:\n" +"# The pin corresponding to the TMC2660 chip select line. This pin\n" +"# will be set to low at the start of SPI messages and set to high\n" +"# after the message transfer completes. This parameter must be\n" +"# provided.\n" +"#spi_speed: 4000000\n" +"# SPI bus frequency used to communicate with the TMC2660 stepper\n" +"# driver. The default is 4000000.\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#interpolate: True\n" +"# If true, enable step interpolation (the driver will internally\n" +"# step at a rate of 256 micro-steps). This only works if microsteps\n" +"# is set to 16. Interpolation does introduce a small systemic\n" +"# positional deviation - see TMC_Drivers.md for details. The default\n" +"# is True.\n" +"run_current:\n" +"# The amount of current (in amps RMS) used by the driver during\n" +"# stepper movement. This parameter must be provided.\n" +"#sense_resistor:\n" +"# The resistance (in ohms) of the motor sense resistor. This\n" +"# parameter must be provided.\n" +"#idle_current_percent: 100\n" +"# The percentage of the run_current the stepper driver will be\n" +"# lowered to when the idle timeout expires (you need to set up the\n" +"# timeout using a [idle_timeout] config section). The current will\n" +"# be raised again once the stepper has to move again. Make sure to\n" +"# set this to a high enough value such that the steppers do not lose\n" +"# their position. There is also small delay until the current is\n" +"# raised again, so take this into account when commanding fast moves\n" +"# while the stepper is idling. The default is 100 (no reduction).\n" +"#driver_TBL: 2\n" +"#driver_RNDTF: 0\n" +"#driver_HDEC: 0\n" +"#driver_CHM: 0\n" +"#driver_HEND: 3\n" +"#driver_HSTRT: 3\n" +"#driver_TOFF: 4\n" +"#driver_SEIMIN: 0\n" +"#driver_SEDN: 0\n" +"#driver_SEMAX: 0\n" +"#driver_SEUP: 0\n" +"#driver_SEMIN: 0\n" +"#driver_SFILT: 0\n" +"#driver_SGT: 0\n" +"#driver_SLPH: 0\n" +"#driver_SLPL: 0\n" +"#driver_DISS2G: 0\n" +"#driver_TS2G: 3\n" +"# Set the given parameter during the configuration of the TMC2660\n" +"# chip. This may be used to set custom driver parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# list above. See the TMC2660 datasheet about what each parameter\n" +"# does and what the restrictions on parameter combinations are. Be\n" +"# especially aware of the CHOPCONF register, where setting CHM to\n" +"# either zero or one will lead to layout changes (the first bit of\n" +"# HDEC) is interpreted as the MSB of HSTRT in this case).\n" +msgstr "" + +#: docs/Config_Reference.md:block 53 (paragraph) +msgid "" +"POLAR KINEMATICS ARE A WORK IN PROGRESS. Moves around the 0, 0 position are " +"known to not work properly." +msgstr "" + +#: docs/Config_Reference.md:block 63 (paragraph) +msgid "" +"CABLE WINCH SUPPORT IS EXPERIMENTAL. Homing is not implemented on cable " +"winch kinematics. In order to home the printer, manually send movement " +"commands until the toolhead is at 0, 0, 0 and then issue a `G28` command." +msgstr "" + +#: docs/Config_Reference.md:block 64 (code) +msgid "" +"[printer]\n" +"kinematics: winch\n" +"\n" +"# The stepper_a section describes the stepper connected to the first\n" +"# cable winch. A minimum of 3 and a maximum of 26 cable winches may be\n" +"# defined (stepper_a to stepper_z) though it is common to define 4.\n" +"[stepper_a]\n" +"rotation_distance:\n" +"# The rotation_distance is the nominal distance (in mm) the toolhead\n" +"# moves towards the cable winch for each full rotation of the\n" +"# stepper motor. This parameter must be provided.\n" +"anchor_x:\n" +"anchor_y:\n" +"anchor_z:\n" +"# The X, Y, and Z position of the cable winch in cartesian space.\n" +"# These parameters must be provided.\n" +msgstr "" + +#: docs/Config_Reference.md:block 80 (code) +msgid "" +" rectangular bed, probe_count = 3, 3:\n" +" x---x---x (max_point)\n" +" |\n" +" x---x---x\n" +" |\n" +" (min_point) x---x---x\n" +"\n" +" round bed, round_probe_count = 5, bed_radius = r:\n" +" x (0, r) end\n" +" /\n" +" x---x---x\n" +" \\\n" +" (-r, 0) x---x---x---x---x (r, 0)\n" +" \\\n" +" x---x---x\n" +" /\n" +" x (0, -r) start\n" +msgstr "" + +#: docs/Config_Reference.md:block 85 (code) +msgid "" +"[bed_tilt]\n" +"#x_adjust: 0\n" +"# The amount to add to each move's Z height for each mm on the X\n" +"# axis. The default is 0.\n" +"#y_adjust: 0\n" +"# The amount to add to each move's Z height for each mm on the Y\n" +"# axis. The default is 0.\n" +"#z_adjust: 0\n" +"# The amount to add to the Z height when the nozzle is nominally at\n" +"# 0, 0. The default is 0.\n" +"# The remaining parameters control a BED_TILT_CALIBRATE extended\n" +"# g-code command that may be used to calibrate appropriate x and y\n" +"# adjustment parameters.\n" +"#points:\n" +"# A list of X, Y coordinates (one per line; subsequent lines\n" +"# indented) that should be probed during a BED_TILT_CALIBRATE\n" +"# command. Specify coordinates of the nozzle and be sure the probe\n" +"# is above the bed at the given nozzle coordinates. The default is\n" +"# to not enable the command.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +msgstr "" + +#: docs/Config_Reference.md:block 89 (code) +msgid "" +"[bed_screws]\n" +"#screw1:\n" +"# The X, Y coordinate of the first bed leveling screw. This is a\n" +"# position to command the nozzle to that is directly above the bed\n" +"# screw (or as close as possible while still being above the bed).\n" +"# This parameter must be provided.\n" +"#screw1_name:\n" +"# An arbitrary name for the given screw. This name is displayed when\n" +"# the helper script runs. The default is to use a name based upon\n" +"# the screw XY location.\n" +"#screw1_fine_adjust:\n" +"# An X, Y coordinate to command the nozzle to so that one can fine\n" +"# tune the bed leveling screw. The default is to not perform fine\n" +"# adjustments on the bed screw.\n" +"#screw2:\n" +"#screw2_name:\n" +"#screw2_fine_adjust:\n" +"#...\n" +"# Additional bed leveling screws. At least three screws must be\n" +"# defined.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# when moving from one screw location to the next. The default is 5.\n" +"#probe_height: 0\n" +"# The height of the probe (in mm) after adjusting for the thermal\n" +"# expansion of bed and nozzle. The default is zero.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#probe_speed: 5\n" +"# The speed (in mm/s) when moving from a horizontal_move_z position\n" +"# to a probe_height position. The default is 5.\n" +msgstr "" + +#: docs/Config_Reference.md:block 96 (code) +msgid "" +"[z_tilt]\n" +"#z_positions:\n" +"# A list of X, Y coordinates (one per line; subsequent lines\n" +"# indented) describing the location of each bed \"pivot point\". The\n" +"# \"pivot point\" is the point where the bed attaches to the given Z\n" +"# stepper. It is described using nozzle coordinates (the X, Y position\n" +"# of the nozzle if it could move directly above the point). The\n" +"# first entry corresponds to stepper_z, the second to stepper_z1,\n" +"# the third to stepper_z2, etc. This parameter must be provided.\n" +"#points:\n" +"# A list of X, Y coordinates (one per line; subsequent lines\n" +"# indented) that should be probed during a Z_TILT_ADJUST command.\n" +"# Specify coordinates of the nozzle and be sure the probe is above\n" +"# the bed at the given nozzle coordinates. This parameter must be\n" +"# provided.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +"#retries: 0\n" +"# Number of times to retry if the probed points aren't within\n" +"# tolerance.\n" +"#retry_tolerance: 0\n" +"# If retries are enabled then retry if largest and smallest probed\n" +"# points differ more than retry_tolerance. Note the smallest unit of\n" +"# change here would be a single step. However if you are probing\n" +"# more points than steppers then you will likely have a fixed\n" +"# minimum value for the range of probed points which you can learn\n" +"# by observing command output.\n" +msgstr "" + +#: docs/Config_Reference.md:block 100 (paragraph) +msgid "Where x is the 0, 0 point on the bed" +msgstr "" + +#: docs/Config_Reference.md:block 101 (code) +msgid "" +"[quad_gantry_level]\n" +"#gantry_corners:\n" +"# A newline separated list of X, Y coordinates describing the two\n" +"# opposing corners of the gantry. The first entry corresponds to Z,\n" +"# the second to Z2. This parameter must be provided.\n" +"#points:\n" +"# A newline separated list of four X, Y points that should be probed\n" +"# during a QUAD_GANTRY_LEVEL command. Order of the locations is\n" +"# important, and should correspond to Z, Z1, Z2, and Z3 location in\n" +"# order. This parameter must be provided. For maximum accuracy,\n" +"# ensure your probe offsets are configured.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +"#max_adjust: 4\n" +"# Safety limit if an adjustment greater than this value is requested\n" +"# quad_gantry_level will abort.\n" +"#retries: 0\n" +"# Number of times to retry if the probed points aren't within\n" +"# tolerance.\n" +"#retry_tolerance: 0\n" +"# If retries are enabled then retry if largest and smallest probed\n" +"# points differ more than retry_tolerance.\n" +msgstr "" + +#: docs/Config_Reference.md:block 107 (paragraph) +msgid "" +"Safe Z homing. One may use this mechanism to home the Z axis at a specific " +"X, Y coordinate. This is useful if the toolhead, for example has to move to " +"the center of the bed before Z can be homed." +msgstr "" + +#: docs/Config_Reference.md:block 158 (code) +msgid "" +"[adxl345]\n" +"cs_pin:\n" +"# The SPI enable pin for the sensor. This parameter must be provided.\n" +"#spi_speed: 5000000\n" +"# The SPI speed (in hz) to use when communicating with the chip.\n" +"# The default is 5000000.\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#axes_map: x, y, z\n" +"# The accelerometer axis for each of the printer's X, Y, and Z axes.\n" +"# This may be useful if the accelerometer is mounted in an\n" +"# orientation that does not match the printer orientation. For\n" +"# example, one could set this to \"y, x, z\" to swap the X and Y axes.\n" +"# It is also possible to negate an axis if the accelerometer\n" +"# direction is reversed (eg, \"x, z, -y\"). The default is \"x, y, z\".\n" +"#rate: 3200\n" +"# Output data rate for ADXL345. ADXL345 supports the following data\n" +"# rates: 3200, 1600, 800, 400, 200, 100, 50, and 25. Note that it is\n" +"# not recommended to change this rate from the default 3200, and\n" +"# rates below 800 will considerably affect the quality of resonance\n" +"# measurements.\n" +msgstr "" + +#: docs/Config_Reference.md:block 391 (code) +msgid "" +"# The \"replicape\" config section adds \"replicape:stepper_x_enable\"\n" +"# virtual stepper enable pins (for steppers X, Y, Z, E, and H) and\n" +"# \"replicape:power_x\" PWM output pins (for hotbed, e, h, fan0, fan1,\n" +"# fan2, and fan3) that may then be used elsewhere in the config file.\n" +"[replicape]\n" +"revision:\n" +"# The replicape hardware revision. Currently only revision \"B3\" is\n" +"# supported. This parameter must be provided.\n" +"#enable_pin: !gpio0_20\n" +"# The replicape global enable pin. The default is !gpio0_20 (aka\n" +"# P9_41).\n" +"host_mcu:\n" +"# The name of the mcu config section that communicates with the\n" +"# Klipper \"linux process\" mcu instance. This parameter must be\n" +"# provided.\n" +"#standstill_power_down: False\n" +"# This parameter controls the CFG6_ENN line on all stepper\n" +"# motors. True sets the enable lines to \"open\". The default is\n" +"# False.\n" +"#stepper_x_microstep_mode:\n" +"#stepper_y_microstep_mode:\n" +"#stepper_z_microstep_mode:\n" +"#stepper_e_microstep_mode:\n" +"#stepper_h_microstep_mode:\n" +"# This parameter controls the CFG1 and CFG2 pins of the given\n" +"# stepper motor driver. Available options are: disable, 1, 2,\n" +"# spread2, 4, 16, spread4, spread16, stealth4, and stealth16. The\n" +"# default is disable.\n" +"#stepper_x_current:\n" +"#stepper_y_current:\n" +"#stepper_z_current:\n" +"#stepper_e_current:\n" +"#stepper_h_current:\n" +"# The configured maximum current (in Amps) of the stepper motor\n" +"# driver. This parameter must be provided if the stepper is not in a\n" +"# disable mode.\n" +"#stepper_x_chopper_off_time_high:\n" +"#stepper_y_chopper_off_time_high:\n" +"#stepper_z_chopper_off_time_high:\n" +"#stepper_e_chopper_off_time_high:\n" +"#stepper_h_chopper_off_time_high:\n" +"# This parameter controls the CFG0 pin of the stepper motor driver\n" +"# (True sets CFG0 high, False sets it low). The default is False.\n" +"#stepper_x_chopper_hysteresis_high:\n" +"#stepper_y_chopper_hysteresis_high:\n" +"#stepper_z_chopper_hysteresis_high:\n" +"#stepper_e_chopper_hysteresis_high:\n" +"#stepper_h_chopper_hysteresis_high:\n" +"# This parameter controls the CFG4 pin of the stepper motor driver\n" +"# (True sets CFG4 high, False sets it low). The default is False.\n" +"#stepper_x_chopper_blank_time_high:\n" +"#stepper_y_chopper_blank_time_high:\n" +"#stepper_z_chopper_blank_time_high:\n" +"#stepper_e_chopper_blank_time_high:\n" +"#stepper_h_chopper_blank_time_high:\n" +"# This parameter controls the CFG5 pin of the stepper motor driver\n" +"# (True sets CFG5 high, False sets it low). The default is True.\n" +msgstr "" + +#: docs/Config_Reference.md:block 78 (paragraph) +msgid "" +"See the [bed mesh guide](Bed_Mesh.md) and [command " +"reference](G-Codes.md#bed_mesh) for additional information." +msgstr "" + +#: docs/Config_Reference.md:block 84 (paragraph) +msgid "" +"See the [command reference](G-Codes.md#bed_tilt) for additional information." +msgstr "" + +#: docs/Config_Reference.md:block 88 (paragraph) +msgid "" +"See the [leveling guide](Manual_Level.md#adjusting-bed-leveling-screws) and " +"[command reference](G-Codes.md#bed_screws) for additional information." +msgstr "" + +#: docs/Config_Reference.md:block 92 (paragraph) +msgid "" +"See the [leveling guide](Manual_Level.md#adjusting-bed-leveling-screws-" +"using-the-bed-probe) and [command reference](G-Codes.md#screws_tilt_adjust) " +"for additional information." +msgstr "" + +#: docs/Config_Reference.md:block 95 (paragraph) +msgid "" +"Multiple Z stepper tilt adjustment. This feature enables independent " +"adjustment of multiple z steppers (see the \"stepper_z1\" section) to adjust" +" for tilt. If this section is present then a Z_TILT_ADJUST extended [G-Code " +"command](G-Codes.md#z_tilt) becomes available." +msgstr "" + +#: docs/Config_Reference.md:block 103 (paragraph) +msgid "" +"Printer Skew Correction. It is possible to use software to correct printer " +"skew across 3 planes, xy, xz, yz. This is done by printing a calibration " +"model along a plane and measuring three lengths. Due to the nature of skew " +"correction these lengths are set via gcode. See [Skew " +"Correction](Skew_Correction.md) and [Command " +"Reference](G-Codes.md#skew_correction) for details." +msgstr "" + +#: docs/Config_Reference.md:block 114 (paragraph) +msgid "" +"See the [endstop phases guide](Endstop_Phase.md) and [command " +"reference](G-Codes.md#endstop_phase) for additional information." +msgstr "" + +#: docs/Config_Reference.md:block 121 (paragraph) +msgid "" +"Execute a gcode on a set delay. See the [command template " +"guide](Command_Templates.md#delayed-gcodes) and [command " +"reference](G-Codes.md#delayed_gcode) for more information." +msgstr "" + +#: docs/Config_Reference.md:block 124 (paragraph) +msgid "" +"Support saving variables to disk so that they are retained across restarts. " +"See [command templates](Command_Templates.md#save-variables-to-disk) and " +"[G-Code reference](G-Codes.md#save_variables) for further information." +msgstr "" + +#: docs/Config_Reference.md:block 135 (paragraph) +msgid "" +"See the [command reference](G-Codes.md#sdcard_loop) for supported commands. " +"See the [sample-macros.cfg](../config/sample-macros.cfg) file for a Marlin " +"compatible M808 G-Code macro." +msgstr "" + +#: docs/Config_Reference.md:block 138 (paragraph) +msgid "" +"Support manually moving stepper motors for diagnostic purposes. Note, using " +"this feature may place the printer in an invalid state - see the [command " +"reference](G-Codes.md#force_move) for important details." +msgstr "" + +#: docs/Config_Reference.md:block 141 (paragraph) +msgid "" +"Pause/Resume functionality with support of position capture and restore. See" +" the [command reference](G-Codes.md#pause_resume) for more information." +msgstr "" + +#: docs/Config_Reference.md:block 144 (paragraph) +msgid "" +"Firmware filament retraction. This enables G10 (retract) and G11 (unretract)" +" GCODE commands issued by many slicers. The parameters below provide startup" +" defaults, although the values can be adjusted via the SET_RETRACTION " +"[command](G-Codes.md#firmware_retraction)), allowing per-filament settings " +"and runtime tuning." +msgstr "" + +#: docs/Config_Reference.md:block 150 (paragraph) +msgid "Enable the \"M118\" and \"RESPOND\" extended [commands](G-Codes.md#respond)." +msgstr "" + +#: docs/Config_Reference.md:block 154 (paragraph) +msgid "" +"Enables [resonance compensation](Resonance_Compensation.md). Also see the " +"[command reference](G-Codes.md#input_shaper)." +msgstr "" + +#: docs/Config_Reference.md:block 157 (paragraph) +msgid "" +"Support for ADXL345 accelerometers. This support allows one to query " +"accelerometer measurements from the sensor. This enables an " +"ACCELEROMETER_MEASURE command (see [G-Codes](G-Codes.md#adxl345) for more " +"information). The default chip name is \"default\", but one may specify an " +"explicit name (eg, [adxl345 my_chip_name])." +msgstr "" + +#: docs/Config_Reference.md:block 160 (paragraph) +msgid "" +"Support for resonance testing and automatic input shaper calibration. In " +"order to use most of the functionality of this module, additional software " +"dependencies must be installed; refer to [Measuring " +"Resonances](Measuring_Resonances.md) and the [command " +"reference](G-Codes.md#resonance_tester) for more information. See the [Max " +"smoothing](Measuring_Resonances.md#max-smoothing) section of the measuring " +"resonances guide for more information on `max_smoothing` parameter and its " +"use." +msgstr "" + +#: docs/Config_Reference.md:block 186 (code) +msgid "" +"[extruder1]\n" +"#step_pin:\n" +"#dir_pin:\n" +"#...\n" +"# See the \"extruder\" section for available stepper and heater\n" +"# parameters.\n" +"#shared_heater:\n" +"# This option is deprecated and should no longer be specified.\n" +msgstr "" + +#: docs/Config_Reference.md:block 193 (paragraph) +msgid "See the [command reference](G-Codes.md#extruder) for more information." +msgstr "" + +#: docs/Config_Reference.md:block 196 (paragraph) +msgid "" +"Manual steppers (one may define any number of sections with a " +"\"manual_stepper\" prefix). These are steppers that are controlled by the " +"MANUAL_STEPPER g-code command. For example: \"MANUAL_STEPPER " +"STEPPER=my_stepper MOVE=10 SPEED=5\". See " +"[G-Codes](G-Codes.md#manual_stepper) file for a description of the " +"MANUAL_STEPPER command. The steppers are not connected to the normal printer" +" kinematics." +msgstr "" + +#: docs/Config_Reference.md:block 212 (paragraph) +msgid "" +"Generic heaters (one may define any number of sections with a " +"\"heater_generic\" prefix). These heaters behave similarly to standard " +"heaters (extruders, heated beds). Use the SET_HEATER_TEMPERATURE command " +"(see [G-Codes](G-Codes.md#heaters) for details) to set the target " +"temperature." +msgstr "" + +#: docs/Config_Reference.md:block 238 (paragraph) +msgid "" +"LM75/LM75A two wire (I2C) connected temperature sensors. These sensors have " +"a range of -55~125 C, so are usable for e.g. chamber temperature monitoring." +" They can also function as simple fan/heater controllers." +msgstr "" + +#: docs/Config_Reference.md:block 261 (paragraph) +msgid "" +"See the [command reference](G-Codes.md#temperature_fan) for additional " +"information." +msgstr "" + +#: docs/Config_Reference.md:block 264 (paragraph) +msgid "" +"Manually controlled fan (one may define any number of sections with a " +"\"fan_generic\" prefix). The speed of a manually controlled fan is set with " +"the SET_FAN_SPEED [gcode command](G-Codes.md#fan_generic)." +msgstr "" + +#: docs/Config_Reference.md:block 268 (paragraph) +msgid "" +"Servos (one may define any number of sections with a \"servo\" prefix). The " +"servos may be controlled using the SET_SERVO [g-code " +"command](G-Codes.md#servo). For example: SET_SERVO SERVO=my_servo ANGLE=180" +msgstr "" + +#: docs/Config_Reference.md:block 283 (paragraph) +msgid "" +"Run-time configurable output pins (one may define any number of sections " +"with an \"output_pin\" prefix). Pins configured here will be setup as output" +" pins and one may modify them at run-time using \"SET_PIN PIN=my_pin " +"VALUE=.1\" type extended [g-code commands](G-Codes.md#output_pin)." +msgstr "" + +#: docs/Config_Reference.md:block 292 (paragraph) +msgid "" +"Configuration of Trinamic stepper motor drivers in UART/SPI mode. Additional" +" information is in the [TMC Drivers guide](TMC_Drivers.md) and in the " +"[command reference](G-Codes.md#tmcxxxx)." +msgstr "" + +#: docs/Config_Reference.md:block 365 (paragraph) +msgid "" +"See the [command reference](G-Codes.md#filament_switch_sensor) for more " +"information." +msgstr "" + +#: docs/Config_Reference.md:block 70 (paragraph) +msgid "" +"The extruder section is used to describe the heater parameters for the " +"nozzle hotend along with the stepper controlling the extruder. See the " +"[command reference](G-Codes.md#extruder) for additional information. See the" +" [pressure advance guide](Pressure_Advance.md) for information on tuning " +"pressure advance." +msgstr "" + +#: docs/Config_Reference.md:block 194 (code) +msgid "" +"[extruder_stepper my_extra_stepper]\n" +"extruder:\n" +"# The extruder this stepper is synchronized to. If this is set to an\n" +"# empty string then the stepper will not be synchronized to an\n" +"# extruder. This parameter must be provided.\n" +"#step_pin:\n" +"#dir_pin:\n" +"#enable_pin:\n" +"#microsteps:\n" +"#rotation_distance:\n" +"# See the \"stepper\" section for the definition of the above\n" +"# parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 54 (code) +msgid "" +"[printer]\n" +"kinematics: polar\n" +"max_z_velocity:\n" +"# This sets the maximum velocity (in mm/s) of movement along the z\n" +"# axis. This setting can be used to restrict the maximum speed of\n" +"# the z stepper motor. The default is to use max_velocity for\n" +"# max_z_velocity.\n" +"max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. It limits the acceleration of the z stepper motor. The\n" +"# default is to use max_accel for max_z_accel.\n" +"\n" +"# The stepper_bed section is used to describe the stepper controlling\n" +"# the bed.\n" +"[stepper_bed]\n" +"gear_ratio:\n" +"# A gear_ratio must be specified and rotation_distance may not be\n" +"# specified. For example, if the bed has an 80 toothed pulley driven\n" +"# by a stepper with a 16 toothed pulley then one would specify a\n" +"# gear ratio of \"80:16\". This parameter must be provided.\n" +"\n" +"# The stepper_arm section is used to describe the stepper controlling\n" +"# the carriage on the arm.\n" +"[stepper_arm]\n" +"\n" +"# The stepper_z section is used to describe the stepper controlling\n" +"# the Z axis.\n" +"[stepper_z]\n" +msgstr "" + +#: docs/Config_Reference.md:block 178 (code) +msgid "" +"[bltouch]\n" +"sensor_pin:\n" +"# Pin connected to the BLTouch sensor pin. Most BLTouch devices\n" +"# require a pullup on the sensor pin (prefix the pin name with \"^\").\n" +"# This parameter must be provided.\n" +"control_pin:\n" +"# Pin connected to the BLTouch control pin. This parameter must be\n" +"# provided.\n" +"#pin_move_time: 0.680\n" +"# The amount of time (in seconds) to wait for the BLTouch pin to\n" +"# move up or down. The default is 0.680 seconds.\n" +"#stow_on_each_sample: True\n" +"# This determines if Klipper should command the pin to move up\n" +"# between each probe attempt when performing a multiple probe\n" +"# sequence. Read the directions in docs/BLTouch.md before setting\n" +"# this to False. The default is True.\n" +"#probe_with_touch_mode: False\n" +"# If this is set to True then Klipper will probe with the device in\n" +"# \"touch_mode\". The default is False (probing in \"pin_down\" mode).\n" +"#pin_up_reports_not_triggered: True\n" +"# Set if the BLTouch consistently reports the probe in a \"not\n" +"# triggered\" state after a successful \"pin_up\" command. This should\n" +"# be True for all genuine BLTouch devices. Read the directions in\n" +"# docs/BLTouch.md before setting this to False. The default is True.\n" +"#pin_up_touch_mode_reports_triggered: True\n" +"# Set if the BLTouch consistently reports a \"triggered\" state after\n" +"# the commands \"pin_up\" followed by \"touch_mode\". This should be\n" +"# True for all genuine BLTouch devices. Read the directions in\n" +"# docs/BLTouch.md before setting this to False. The default is True.\n" +"#set_output_mode:\n" +"# Request a specific sensor pin output mode on the BLTouch V3.0 (and\n" +"# later). This setting should not be used on other types of probes.\n" +"# Set to \"5V\" to request a sensor pin output of 5 Volts (only use if\n" +"# the controller board needs 5V mode and is 5V tolerant on its input\n" +"# signal line). Set to \"OD\" to request the sensor pin output use\n" +"# open drain mode. The default is to not request an output mode.\n" +"#x_offset:\n" +"#y_offset:\n" +"#z_offset:\n" +"#speed:\n" +"#lift_speed:\n" +"#samples:\n" +"#sample_retract_dist:\n" +"#samples_result:\n" +"#samples_tolerance:\n" +"#samples_tolerance_retries:\n" +"# See the \"probe\" section for information on these parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 280 (paragraph) +msgid "PCA9632 LED support. The PCA9632 is used on the FlashForge Dreamer." +msgstr "" + +#: docs/Config_Reference.md:block 71 (code) +msgid "" +"[extruder]\n" +"step_pin:\n" +"dir_pin:\n" +"enable_pin:\n" +"microsteps:\n" +"rotation_distance:\n" +"#full_steps_per_rotation:\n" +"#gear_ratio:\n" +"# See the \"stepper\" section for a description of the above\n" +"# parameters. If none of the above parameters are specified then no\n" +"# stepper will be associated with the nozzle hotend (though a\n" +"# SYNC_EXTRUDER_MOTION command may associate one at run-time).\n" +"nozzle_diameter:\n" +"# Diameter of the nozzle orifice (in mm). This parameter must be\n" +"# provided.\n" +"filament_diameter:\n" +"# The nominal diameter of the raw filament (in mm) as it enters the\n" +"# extruder. This parameter must be provided.\n" +"#max_extrude_cross_section:\n" +"# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +"# extrusion width multiplied by layer height). This setting prevents\n" +"# excessive amounts of extrusion during relatively small XY moves.\n" +"# If a move requests an extrusion rate that would exceed this value\n" +"# it will cause an error to be returned. The default is: 4.0 *\n" +"# nozzle_diameter^2\n" +"#instantaneous_corner_velocity: 1.000\n" +"# The maximum instantaneous velocity change (in mm/s) of the\n" +"# extruder during the junction of two moves. The default is 1mm/s.\n" +"#max_extrude_only_distance: 50.0\n" +"# Maximum length (in mm of raw filament) that a retraction or\n" +"# extrude-only move may have. If a retraction or extrude-only move\n" +"# requests a distance greater than this value it will cause an error\n" +"# to be returned. The default is 50mm.\n" +"#max_extrude_only_velocity:\n" +"#max_extrude_only_accel:\n" +"# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +"# extruder motor for retractions and extrude-only moves. These\n" +"# settings do not have any impact on normal printing moves. If not\n" +"# specified then they are calculated to match the limit an XY\n" +"# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +"# have.\n" +"#pressure_advance: 0.0\n" +"# The amount of raw filament to push into the extruder during\n" +"# extruder acceleration. An equal amount of filament is retracted\n" +"# during deceleration. It is measured in millimeters per\n" +"# millimeter/second. The default is 0, which disables pressure\n" +"# advance.\n" +"#pressure_advance_smooth_time: 0.040\n" +"# A time range (in seconds) to use when calculating the average\n" +"# extruder velocity for pressure advance. A larger value results in\n" +"# smoother extruder movements. This parameter may not exceed 200ms.\n" +"# This setting only applies if pressure_advance is non-zero. The\n" +"# default is 0.040 (40 milliseconds).\n" +"#\n" +"# The remaining variables describe the extruder heater.\n" +"heater_pin:\n" +"# PWM output pin controlling the heater. This parameter must be\n" +"# provided.\n" +"#max_power: 1.0\n" +"# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +"# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +"# fully enabled for extended periods, while a value of 0.5 would\n" +"# allow the pin to be enabled for no more than half the time. This\n" +"# setting may be used to limit the total power output (over extended\n" +"# periods) to the heater. The default is 1.0.\n" +"sensor_type:\n" +"# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +"# \"ATC Semitec 104GT-2\", \"ATC Semitec 104NT-4-R025H42G\", \"Generic\n" +"# 3950\",\"Honeywell 100K 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\",\n" +"# \"SliceEngineering 450\", and \"TDK NTCG104LH104JT1\". See the\n" +"# \"Temperature sensors\" section for other sensors. This parameter\n" +"# must be provided.\n" +"sensor_pin:\n" +"# Analog input pin connected to the sensor. This parameter must be\n" +"# provided.\n" +"#pullup_resistor: 4700\n" +"# The resistance (in ohms) of the pullup attached to the thermistor.\n" +"# This parameter is only valid when the sensor is a thermistor. The\n" +"# default is 4700 ohms.\n" +"#smooth_time: 1.0\n" +"# A time value (in seconds) over which temperature measurements will\n" +"# be smoothed to reduce the impact of measurement noise. The default\n" +"# is 1 seconds.\n" +"control:\n" +"# Control algorithm (either pid or watermark). This parameter must\n" +"# be provided.\n" +"pid_Kp:\n" +"pid_Ki:\n" +"pid_Kd:\n" +"# The proportional (pid_Kp), integral (pid_Ki), and derivative\n" +"# (pid_Kd) settings for the PID feedback control system. Klipper\n" +"# evaluates the PID settings with the following general formula:\n" +"# heater_pwm = (Kp*error + Ki*integral(error) - Kd*derivative(error)) / 255\n" +"# Where \"error\" is \"requested_temperature - measured_temperature\"\n" +"# and \"heater_pwm\" is the requested heating rate with 0.0 being full\n" +"# off and 1.0 being full on. Consider using the PID_CALIBRATE\n" +"# command to obtain these parameters. The pid_Kp, pid_Ki, and pid_Kd\n" +"# parameters must be provided for PID heaters.\n" +"#max_delta: 2.0\n" +"# On 'watermark' controlled heaters this is the number of degrees in\n" +"# Celsius above the target temperature before disabling the heater\n" +"# as well as the number of degrees below the target before\n" +"# re-enabling the heater. The default is 2 degrees Celsius.\n" +"#pwm_cycle_time: 0.100\n" +"# Time in seconds for each software PWM cycle of the heater. It is\n" +"# not recommended to set this unless there is an electrical\n" +"# requirement to switch the heater faster than 10 times a second.\n" +"# The default is 0.100 seconds.\n" +"#min_extrude_temp: 170\n" +"# The minimum temperature (in Celsius) at which extruder move\n" +"# commands may be issued. The default is 170 Celsius.\n" +"min_temp:\n" +"max_temp:\n" +"# The maximum range of valid temperatures (in Celsius) that the\n" +"# heater must remain within. This controls a safety feature\n" +"# implemented in the micro-controller code - should the measured\n" +"# temperature ever fall outside this range then the micro-controller\n" +"# will go into a shutdown state. This check can help detect some\n" +"# heater and sensor hardware failures. Set this range just wide\n" +"# enough so that reasonable temperatures do not result in an error.\n" +"# These parameters must be provided.\n" +msgstr "" + +#: docs/Config_Reference.md:block 266 (header) +msgid "LEDs" +msgstr "" + +#: docs/Config_Reference.md:block 267 (header) +msgid "[led]" +msgstr "" + +#: docs/Config_Reference.md:block 268 (paragraph) +msgid "" +"Support for LEDs (and LED strips) controlled via micro-controller PWM pins " +"(one may define any number of sections with an \"led\" prefix). See the " +"[command reference](G-Codes.md#led) for more information." +msgstr "" + +#: docs/Config_Reference.md:block 269 (code) +msgid "" +"[led my_led]\n" +"#red_pin:\n" +"#green_pin:\n" +"#blue_pin:\n" +"#white_pin:\n" +"# The pin controlling the given LED color. At least one of the above\n" +"# parameters must be provided.\n" +"#cycle_time: 0.010\n" +"# The amount of time (in seconds) per PWM cycle. It is recommended\n" +"# this be 10 milliseconds or greater when using software based PWM.\n" +"# The default is 0.010 seconds.\n" +"#hardware_pwm: False\n" +"# Enable this to use hardware PWM instead of software PWM. When\n" +"# using hardware PWM the actual cycle time is constrained by the\n" +"# implementation and may be significantly different than the\n" +"# requested cycle_time. The default is False.\n" +"#initial_RED: 0.0\n" +"#initial_GREEN: 0.0\n" +"#initial_BLUE: 0.0\n" +"#initial_WHITE: 0.0\n" +"# Sets the initial LED color. Each value should be between 0.0 and\n" +"# 1.0. The default for each color is 0.\n" +msgstr "" + +#: docs/Config_Reference.md:block 271 (paragraph) +msgid "" +"Neopixel (aka WS2812) LED support (one may define any number of sections " +"with a \"neopixel\" prefix). See the [command reference](G-Codes.md#led) for" +" more information." +msgstr "" + +#: docs/Config_Reference.md:block 275 (paragraph) +msgid "" +"Dotstar (aka APA102) LED support (one may define any number of sections with" +" a \"dotstar\" prefix). See the [command reference](G-Codes.md#led) for more" +" information." +msgstr "" + +#: docs/Config_Reference.md:block 276 (code) +msgid "" +"[dotstar my_dotstar]\n" +"data_pin:\n" +"# The pin connected to the data line of the dotstar. This parameter\n" +"# must be provided.\n" +"clock_pin:\n" +"# The pin connected to the clock line of the dotstar. This parameter\n" +"# must be provided.\n" +"#chain_count:\n" +"# See the \"neopixel\" section for information on this parameter.\n" +"#initial_RED: 0.0\n" +"#initial_GREEN: 0.0\n" +"#initial_BLUE: 0.0\n" +"# See the \"led\" section for information on these parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 277 (header) +msgid "[pca9533]" +msgstr "" + +#: docs/Config_Reference.md:block 280 (header) +msgid "[pca9632]" +msgstr "" + +#: docs/Config_Reference.md:block 283 (header) +msgid "Additional servos, buttons, and other pins" +msgstr "" + +#: docs/Config_Reference.md:block 356 (paragraph) +msgid "" +"Display data text \"macros\" (one may define any number of sections with a " +"display_template prefix). See the [command templates](Command_Templates.md) " +"document for information on template evaluation." +msgstr "" + +#: docs/Config_Reference.md:block 357 (paragraph) +msgid "" +"This feature allows one to reduce repetitive definitions in display_data " +"sections. One may use the builtin `render()` function in display_data " +"sections to evaluate a template. For example, if one were to define " +"`[display_template my_template]` then one could use `{ render('my_template')" +" }` in a display_data section." +msgstr "" + +#: docs/Config_Reference.md:block 358 (paragraph) +msgid "" +"This feature can also be used for continuous LED updates using the " +"[SET_LED_TEMPLATE](G-Codes.md#set_led_template) command." +msgstr "" + +#: docs/Config_Reference.md:block 359 (code) +msgid "" +"[display_template my_template_name]\n" +"#param_:\n" +"# One may specify any number of options with a \"param_\" prefix. The\n" +"# given name will be assigned the given value (parsed as a Python\n" +"# literal) and will be available during macro expansion. If the\n" +"# parameter is passed in the call to render() then that value will\n" +"# be used during macro expansion. For example, a config with\n" +"# \"param_speed = 75\" might have a caller with\n" +"# \"render('my_template_name', param_speed=80)\". Parameter names may\n" +"# not use upper case characters.\n" +"text:\n" +"# The text to return when the this template is rendered. This field\n" +"# is evaluated using command templates (see\n" +"# docs/Command_Templates.md). This parameter must be provided.\n" +msgstr "" + +#: docs/Config_Reference.md:block 409 (header) +msgid "[angle]" +msgstr "" + +#: docs/Config_Reference.md:block 410 (paragraph) +msgid "" +"Magnetic hall angle sensor support for reading stepper motor angle shaft " +"measurements using a1333, as5047d, or tle5012b SPI chips. The measurements " +"are available via the [API Server](API_Server.md) and [motion analysis " +"tool](Debugging.md#motion-analysis-and-data-logging). See the [G-Code " +"reference](G-Codes.md#angle) for available commands." +msgstr "" + +#: docs/Config_Reference.md:block 411 (code) +msgid "" +"[angle my_angle_sensor]\n" +"sensor_type:\n" +"# The type of the magnetic hall sensor chip. Available choices are\n" +"# \"a1333\", \"as5047d\", and \"tle5012b\". This parameter must be\n" +"# specified.\n" +"#sample_period: 0.000400\n" +"# The query period (in seconds) to use during measurements. The\n" +"# default is 0.000400 (which is 2500 samples per second).\n" +"#stepper:\n" +"# The name of the stepper that the angle sensor is attached to (eg,\n" +"# \"stepper_x\"). Setting this value enables an angle calibration\n" +"# tool. To use this feature, the Python \"numpy\" package must be\n" +"# installed. The default is to not enable angle calibration for the\n" +"# angle sensor.\n" +"cs_pin:\n" +"# The SPI enable pin for the sensor. This parameter must be provided.\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 161 (code) +msgid "" +"[resonance_tester]\n" +"#probe_points:\n" +"# A list of X, Y, Z coordinates of points (one point per line) to test\n" +"# resonances at. At least one point is required. Make sure that all\n" +"# points with some safety margin in XY plane (~a few centimeters)\n" +"# are reachable by the toolhead.\n" +"#accel_chip:\n" +"# A name of the accelerometer chip to use for measurements. If\n" +"# adxl345 chip was defined without an explicit name, this parameter\n" +"# can simply reference it as \"accel_chip: adxl345\", otherwise an\n" +"# explicit name must be supplied as well, e.g. \"accel_chip: adxl345\n" +"# my_chip_name\". Either this, or the next two parameters must be\n" +"# set.\n" +"#accel_chip_x:\n" +"#accel_chip_y:\n" +"# Names of the accelerometer chips to use for measurements for each\n" +"# of the axis. Can be useful, for instance, on bed slinger printer,\n" +"# if two separate accelerometers are mounted on the bed (for Y axis)\n" +"# and on the toolhead (for X axis). These parameters have the same\n" +"# format as 'accel_chip' parameter. Only 'accel_chip' or these two\n" +"# parameters must be provided.\n" +"#max_smoothing:\n" +"# Maximum input shaper smoothing to allow for each axis during shaper\n" +"# auto-calibration (with 'SHAPER_CALIBRATE' command). By default no\n" +"# maximum smoothing is specified. Refer to Measuring_Resonances guide\n" +"# for more details on using this feature.\n" +"#min_freq: 5\n" +"# Minimum frequency to test for resonances. The default is 5 Hz.\n" +"#max_freq: 133.33\n" +"# Maximum frequency to test for resonances. The default is 133.33 Hz.\n" +"#accel_per_hz: 75\n" +"# This parameter is used to determine which acceleration to use to\n" +"# test a specific frequency: accel = accel_per_hz * freq. Higher the\n" +"# value, the higher is the energy of the oscillations. Can be set to\n" +"# a lower than the default value if the resonances get too strong on\n" +"# the printer. However, lower values make measurements of\n" +"# high-frequency resonances less precise. The default value is 75\n" +"# (mm/sec).\n" +"#hz_per_sec: 1\n" +"# Determines the speed of the test. When testing all frequencies in\n" +"# range [min_freq, max_freq], each second the frequency increases by\n" +"# hz_per_sec. Small values make the test slow, and the large values\n" +"# will decrease the precision of the test. The default value is 1.0\n" +"# (Hz/sec == sec^-2).\n" +msgstr "" + +#: docs/Config_Reference.md:block 179 (header) +msgid "[smart_effector]" +msgstr "" + +#: docs/Config_Reference.md:block 180 (paragraph) +msgid "" +"The \"Smart Effector\" from Duet3d implements a Z probe using a force " +"sensor. One may define this section instead of `[probe]` to enable the Smart" +" Effector specific features. This also enables [runtime " +"commands](G-Codes.md#smart_effector) to adjust the parameters of the Smart " +"Effector at run time." +msgstr "" + +#: docs/Config_Reference.md:block 181 (code) +msgid "" +"[smart_effector]\n" +"pin:\n" +"# Pin connected to the Smart Effector Z Probe output pin (pin 5). Note that\n" +"# pullup resistor on the board is generally not required. However, if the\n" +"# output pin is connected to the board pin with a pullup resistor, that\n" +"# resistor must be high value (e.g. 10K Ohm or more). Some boards have a low\n" +"# value pullup resistor on the Z probe input, which will likely result in an\n" +"# always-triggered probe state. In this case, connect the Smart Effector to\n" +"# a different pin on the board. This parameter is required.\n" +"#control_pin:\n" +"# Pin connected to the Smart Effector control input pin (pin 7). If provided,\n" +"# Smart Effector sensitivity programming commands become available.\n" +"#probe_accel:\n" +"# If set, limits the acceleration of the probing moves (in mm/sec^2).\n" +"# A sudden large acceleration at the beginning of the probing move may\n" +"# cause spurious probe triggering, especially if the hotend is heavy.\n" +"# To prevent that, it may be necessary to reduce the acceleration of\n" +"# the probing moves via this parameter.\n" +"#recovery_time: 0.4\n" +"# A delay between the travel moves and the probing moves in seconds. A fast\n" +"# travel move prior to probing may result in a spurious probe triggering.\n" +"# This may cause 'Probe triggered prior to movement' errors if no delay\n" +"# is set. Value 0 disables the recovery delay.\n" +"# Default value is 0.4.\n" +"#x_offset:\n" +"#y_offset:\n" +"# Should be left unset (or set to 0).\n" +"z_offset:\n" +"# Trigger height of the probe. Start with -0.1 (mm), and adjust later using\n" +"# `PROBE_CALIBRATE` command. This parameter must be provided.\n" +"#speed:\n" +"# Speed (in mm/s) of the Z axis when probing. It is recommended to start\n" +"# with the probing speed of 20 mm/s and adjust it as necessary to improve\n" +"# the accuracy and repeatability of the probe triggering.\n" +"#samples:\n" +"#sample_retract_dist:\n" +"#samples_result:\n" +"#samples_tolerance:\n" +"#samples_tolerance_retries:\n" +"#activate_gcode:\n" +"#deactivate_gcode:\n" +"#deactivate_on_each_sample:\n" +"# See the \"probe\" section for more information on the parameters above.\n" +msgstr "" + +#: docs/Config_Reference.md:block 275 (paragraph) +msgid "" +"Note that the [linux mcu](RPi_microcontroller.md) implementation does not " +"currently support directly connected neopixels. The current design using the" +" Linux kernel interface does not allow this scenario because the kernel GPIO" +" interface is not fast enough to provide the required pulse rates." +msgstr "" + +#: docs/Config_Reference.md:block 276 (code) +msgid "" +"[neopixel my_neopixel]\n" +"pin:\n" +"# The pin connected to the neopixel. This parameter must be\n" +"# provided.\n" +"#chain_count:\n" +"# The number of Neopixel chips that are \"daisy chained\" to the\n" +"# provided pin. The default is 1 (which indicates only a single\n" +"# Neopixel is connected to the pin).\n" +"#color_order: GRB\n" +"# Set the pixel order required by the LED hardware (using a string\n" +"# containing the letters R, G, B, W with W optional). Alternatively,\n" +"# this may be a comma separated list of pixel orders - one for each\n" +"# LED in the chain. The default is GRB.\n" +"#initial_RED: 0.0\n" +"#initial_GREEN: 0.0\n" +"#initial_BLUE: 0.0\n" +"#initial_WHITE: 0.0\n" +"# See the \"led\" section for information on these parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 108 (code) +msgid "" +"[safe_z_home]\n" +"home_xy_position:\n" +"# A X, Y coordinate (e.g. 100, 100) where the Z homing should be\n" +"# performed. This parameter must be provided.\n" +"#speed: 50.0\n" +"# Speed at which the toolhead is moved to the safe Z home\n" +"# coordinate. The default is 50 mm/s\n" +"#z_hop:\n" +"# Distance (in mm) to lift the Z axis prior to homing. This is\n" +"# applied to any homing command, even if it doesn't home the Z axis.\n" +"# If the Z axis is already homed and the current Z position is less\n" +"# than z_hop, then this will lift the head to a height of z_hop. If\n" +"# the Z axis is not already homed the head is lifted by z_hop.\n" +"# The default is to not implement Z hop.\n" +"#z_hop_speed: 15.0\n" +"# Speed (in mm/s) at which the Z axis is lifted prior to homing. The\n" +"# default is 15 mm/s.\n" +"#move_to_previous: False\n" +"# When set to True, the X and Y axes are reset to their previous\n" +"# positions after Z axis homing. The default is False.\n" +msgstr "" + +#: docs/Config_Reference.md:block 132 (code) +msgid "" +"[virtual_sdcard]\n" +"path:\n" +"# The path of the local directory on the host machine to look for\n" +"# g-code files. This is a read-only directory (sdcard file writes\n" +"# are not supported). One may point this to OctoPrint's upload\n" +"# directory (generally ~/.octoprint/uploads/ ). This parameter must\n" +"# be provided.\n" +"#on_error_gcode:\n" +"# A list of G-Code commands to execute when an error is reported.\n" +"\n" +msgstr "" + +#: docs/Config_Reference.md:block 152 (header) +msgid "[exclude_object]" +msgstr "" + +#: docs/Config_Reference.md:block 153 (paragraph) +msgid "" +"Enables support to exclude or cancel individual objects during the printing " +"process." +msgstr "" + +#: docs/Config_Reference.md:block 154 (paragraph) +msgid "" +"See the [exclude objects guide](Exclude_Object.md) and [command " +"reference](G-Codes.md#excludeobject) for additional information. See the " +"[sample-macros.cfg](../config/sample-macros.cfg) file for a " +"Marlin/RepRapFirmware compatible M486 G-Code macro." +msgstr "" + +#: docs/Config_Reference.md:block 155 (code) +msgid "[exclude_object]\n" +msgstr "" + +#: docs/Config_Reference.md:block 163 (header) +msgid "[mpu9250]" +msgstr "" + +#: docs/Config_Reference.md:block 228 (paragraph) +msgid "" +"Klipper includes definitions for many types of temperature sensors. These " +"sensors may be used in any config section that requires a temperature sensor" +" (such as an `[extruder]` or `[heater_bed]` section)." +msgstr "" + +#: docs/Config_Reference.md:block 19 (code) +msgid "" +"[printer]\n" +"kinematics:\n" +"# The type of printer in use. This option may be one of: cartesian,\n" +"# corexy, corexz, hybrid_corexy, hybrid_corexz, rotary_delta, delta,\n" +"# deltesian, polar, winch, or none. This parameter must be specified.\n" +"max_velocity:\n" +"# Maximum velocity (in mm/s) of the toolhead (relative to the\n" +"# print). This parameter must be specified.\n" +"max_accel:\n" +"# Maximum acceleration (in mm/s^2) of the toolhead (relative to the\n" +"# print). This parameter must be specified.\n" +"#max_accel_to_decel:\n" +"# A pseudo acceleration (in mm/s^2) controlling how fast the\n" +"# toolhead may go from acceleration to deceleration. It is used to\n" +"# reduce the top speed of short zig-zag moves (and thus reduce\n" +"# printer vibration from these moves). The default is half of\n" +"# max_accel.\n" +"#square_corner_velocity: 5.0\n" +"# The maximum velocity (in mm/s) that the toolhead may travel a 90\n" +"# degree corner at. A non-zero value can reduce changes in extruder\n" +"# flow rates by enabling instantaneous velocity changes of the\n" +"# toolhead during cornering. This value configures the internal\n" +"# centripetal velocity cornering algorithm; corners with angles\n" +"# larger than 90 degrees will have a higher cornering velocity while\n" +"# corners with angles less than 90 degrees will have a lower\n" +"# cornering velocity. If this is set to zero then the toolhead will\n" +"# decelerate to zero at each corner. The default is 5mm/s.\n" +msgstr "" + +#: docs/Config_Reference.md:block 32 (header) +msgid "Deltesian Kinematics" +msgstr "" + +#: docs/Config_Reference.md:block 33 (paragraph) +msgid "" +"See [example-deltesian.cfg](../config/example-deltesian.cfg) for an example " +"deltesian kinematics config file." +msgstr "" + +#: docs/Config_Reference.md:block 34 (paragraph) +msgid "" +"Only parameters specific to deltesian printers are described here - see " +"[common kinematic settings](#common-kinematic-settings) for available " +"parameters." +msgstr "" + +#: docs/Config_Reference.md:block 266 (code) +msgid "" +"[fan]\n" +"pin:\n" +"# Output pin controlling the fan. This parameter must be provided.\n" +"#max_power: 1.0\n" +"# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +"# pin may be set to. The value 1.0 allows the pin to be set fully\n" +"# enabled for extended periods, while a value of 0.5 would allow the\n" +"# pin to be enabled for no more than half the time. This setting may\n" +"# be used to limit the total power output (over extended periods) to\n" +"# the fan. If this value is less than 1.0 then fan speed requests\n" +"# will be scaled between zero and max_power (for example, if\n" +"# max_power is .9 and a fan speed of 80% is requested then the fan\n" +"# power will be set to 72%). The default is 1.0.\n" +"#shutdown_speed: 0\n" +"# The desired fan speed (expressed as a value from 0.0 to 1.0) if\n" +"# the micro-controller software enters an error state. The default\n" +"# is 0.\n" +"#cycle_time: 0.010\n" +"# The amount of time (in seconds) for each PWM power cycle to the\n" +"# fan. It is recommended this be 10 milliseconds or greater when\n" +"# using software based PWM. The default is 0.010 seconds.\n" +"#hardware_pwm: False\n" +"# Enable this to use hardware PWM instead of software PWM. Most fans\n" +"# do not work well with hardware PWM, so it is not recommended to\n" +"# enable this unless there is an electrical requirement to switch at\n" +"# very high speeds. When using hardware PWM the actual cycle time is\n" +"# constrained by the implementation and may be significantly\n" +"# different than the requested cycle_time. The default is False.\n" +"#kick_start_time: 0.100\n" +"# Time (in seconds) to run the fan at full speed when either first\n" +"# enabling or increasing it by more than 50% (helps get the fan\n" +"# spinning). The default is 0.100 seconds.\n" +"#off_below: 0.0\n" +"# The minimum input speed which will power the fan (expressed as a\n" +"# value from 0.0 to 1.0). When a speed lower than off_below is\n" +"# requested the fan will instead be turned off. This setting may be\n" +"# used to prevent fan stalls and to ensure kick starts are\n" +"# effective. The default is 0.0.\n" +"#\n" +"# This setting should be recalibrated whenever max_power is adjusted.\n" +"# To calibrate this setting, start with off_below set to 0.0 and the\n" +"# fan spinning. Gradually lower the fan speed to determine the lowest\n" +"# input speed which reliably drives the fan without stalls. Set\n" +"# off_below to the duty cycle corresponding to this value (for\n" +"# example, 12% -> 0.12) or slightly higher.\n" +"#tachometer_pin:\n" +"# Tachometer input pin for monitoring fan speed. A pullup is generally\n" +"# required. This parameter is optional.\n" +"#tachometer_ppr: 2\n" +"# When tachometer_pin is specified, this is the number of pulses per\n" +"# revolution of the tachometer signal. For a BLDC fan this is\n" +"# normally half the number of poles. The default is 2.\n" +"#tachometer_poll_interval: 0.0015\n" +"# When tachometer_pin is specified, this is the polling period of the\n" +"# tachometer pin, in seconds. The default is 0.0015, which is fast\n" +"# enough for fans below 10000 RPM at 2 PPR. This must be smaller than\n" +"# 30/(tachometer_ppr*rpm), with some margin, where rpm is the\n" +"# maximum speed (in RPM) of the fan.\n" +"#enable_pin:\n" +"# Optional pin to enable power to the fan. This can be useful for fans\n" +"# with dedicated PWM inputs. Some of these fans stay on even at 0% PWM\n" +"# input. In such a case, the PWM pin can be used normally, and e.g. a\n" +"# ground-switched FET(standard fan pin) can be used to control power to\n" +"# the fan.\n" +msgstr "" + +#: docs/Config_Reference.md:block 272 (code) +msgid "" +"[controller_fan my_controller_fan]\n" +"#pin:\n" +"#max_power:\n" +"#shutdown_speed:\n" +"#cycle_time:\n" +"#hardware_pwm:\n" +"#kick_start_time:\n" +"#off_below:\n" +"#tachometer_pin:\n" +"#tachometer_ppr:\n" +"#tachometer_poll_interval:\n" +"#enable_pin:\n" +"# See the \"fan\" section for a description of the above parameters.\n" +"#fan_speed: 1.0\n" +"# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +"# will be set to when a heater or stepper driver is active.\n" +"# The default is 1.0\n" +"#idle_timeout:\n" +"# The amount of time (in seconds) after a stepper driver or heater\n" +"# was active and the fan should be kept running. The default\n" +"# is 30 seconds.\n" +"#idle_speed:\n" +"# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +"# will be set to when a heater or stepper driver was active and\n" +"# before the idle_timeout is reached. The default is fan_speed.\n" +"#heater:\n" +"#stepper:\n" +"# Name of the config section defining the heater/stepper that this fan\n" +"# is associated with. If a comma separated list of heater/stepper names\n" +"# is provided here, then the fan will be enabled when any of the given\n" +"# heaters/steppers are enabled. The default heater is \"extruder\", the\n" +"# default stepper is all of them.\n" +msgstr "" + +#: docs/Config_Reference.md:block 276 (code) +msgid "" +"[temperature_fan my_temp_fan]\n" +"#pin:\n" +"#max_power:\n" +"#shutdown_speed:\n" +"#cycle_time:\n" +"#hardware_pwm:\n" +"#kick_start_time:\n" +"#off_below:\n" +"#tachometer_pin:\n" +"#tachometer_ppr:\n" +"#tachometer_poll_interval:\n" +"#enable_pin:\n" +"# See the \"fan\" section for a description of the above parameters.\n" +"#sensor_type:\n" +"#sensor_pin:\n" +"#control:\n" +"#max_delta:\n" +"#min_temp:\n" +"#max_temp:\n" +"# See the \"extruder\" section for a description of the above parameters.\n" +"#pid_Kp:\n" +"#pid_Ki:\n" +"#pid_Kd:\n" +"# The proportional (pid_Kp), integral (pid_Ki), and derivative\n" +"# (pid_Kd) settings for the PID feedback control system. Klipper\n" +"# evaluates the PID settings with the following general formula:\n" +"# fan_pwm = max_power - (Kp*e + Ki*integral(e) - Kd*derivative(e)) / 255\n" +"# Where \"e\" is \"target_temperature - measured_temperature\" and\n" +"# \"fan_pwm\" is the requested fan rate with 0.0 being full off and\n" +"# 1.0 being full on. The pid_Kp, pid_Ki, and pid_Kd parameters must\n" +"# be provided when the PID control algorithm is enabled.\n" +"#pid_deriv_time: 2.0\n" +"# A time value (in seconds) over which temperature measurements will\n" +"# be smoothed when using the PID control algorithm. This may reduce\n" +"# the impact of measurement noise. The default is 2 seconds.\n" +"#target_temp: 40.0\n" +"# A temperature (in Celsius) that will be the target temperature.\n" +"# The default is 40 degrees.\n" +"#max_speed: 1.0\n" +"# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +"# will be set to when the sensor temperature exceeds the set value.\n" +"# The default is 1.0.\n" +"#min_speed: 0.3\n" +"# The minimum fan speed (expressed as a value from 0.0 to 1.0) that\n" +"# the fan will be set to for PID temperature fans.\n" +"# The default is 0.3.\n" +"#gcode_id:\n" +"# If set, the temperature will be reported in M105 queries using the\n" +"# given id. The default is to not report the temperature via M105.\n" +msgstr "" + +#: docs/Config_Reference.md:block 279 (code) +msgid "" +"[fan_generic extruder_partfan]\n" +"#pin:\n" +"#max_power:\n" +"#shutdown_speed:\n" +"#cycle_time:\n" +"#hardware_pwm:\n" +"#kick_start_time:\n" +"#off_below:\n" +"#tachometer_pin:\n" +"#tachometer_ppr:\n" +"#tachometer_poll_interval:\n" +"#enable_pin:\n" +"# See the \"fan\" section for a description of the above parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 109 (header) +msgid "[z_thermal_adjust]" +msgstr "" + +#: docs/Config_Reference.md:block 110 (paragraph) +msgid "" +"Temperature-dependant toolhead Z position adjustment. Compensate for " +"vertical toolhead movement caused by thermal expansion of the printer's " +"frame in real-time using a temperature sensor (typically coupled to a " +"vertical section of frame)." +msgstr "" + +#: docs/Config_Reference.md:block 111 (paragraph) +msgid "See also: [extended g-code commands](G-Codes.md#z_thermal_adjust)." +msgstr "" + +#: docs/Config_Reference.md:block 112 (code) +msgid "" +"[z_thermal_adjust]\n" +"#temp_coeff:\n" +"# The temperature coefficient of expansion, in mm/degC. For example, a\n" +"# temp_coeff of 0.01 mm/degC will move the Z axis downwards by 0.01 mm for\n" +"# every degree Celsius that the temperature sensor increases. Defaults to\n" +"# 0.0 mm/degC, which applies no adjustment.\n" +"#smooth_time:\n" +"# Smoothing window applied to the temperature sensor, in seconds. Can reduce\n" +"# motor noise from excessive small corrections in response to sensor noise.\n" +"# The default is 2.0 seconds.\n" +"#z_adjust_off_above:\n" +"# Disables adjustments above this Z height [mm]. The last computed correction\n" +"# will remain applied until the toolhead moves below the specified Z height\n" +"# again. The default is 99999999.0 mm (always on).\n" +"#max_z_adjustment:\n" +"# Maximum absolute adjustment that can be applied to the Z axis [mm]. The\n" +"# default is 99999999.0 mm (unlimited).\n" +"#sensor_type:\n" +"#sensor_pin:\n" +"#min_temp:\n" +"#max_temp:\n" +"# Temperature sensor configuration.\n" +"# See the \"extruder\" section for the definition of the above\n" +"# parameters.\n" +"#gcode_id:\n" +"# See the \"heater_generic\" section for the definition of this\n" +"# parameter.\n" +msgstr "" + +#: docs/Config_Reference.md:block 172 (paragraph) +msgid "" +"Support for MPU-9250, MPU-9255, MPU-6515, MPU-6050, and MPU-6500 " +"accelerometers (one may define any number of sections with an \"mpu9250\" " +"prefix)." +msgstr "" + +#: docs/Config_Reference.md:block 321 (code) +msgid "" +"[tmc2130 stepper_x]\n" +"cs_pin:\n" +"# The pin corresponding to the TMC2130 chip select line. This pin\n" +"# will be set to low at the start of SPI messages and raised to high\n" +"# after the message completes. This parameter must be provided.\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#chain_position:\n" +"#chain_length:\n" +"# These parameters configure an SPI daisy chain. The two parameters\n" +"# define the stepper position in the chain and the total chain length.\n" +"# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +"# The default is to not use an SPI daisy chain.\n" +"#interpolate: True\n" +"# If true, enable step interpolation (the driver will internally\n" +"# step at a rate of 256 micro-steps). This interpolation does\n" +"# introduce a small systemic positional deviation - see\n" +"# TMC_Drivers.md for details. The default is True.\n" +"run_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# during stepper movement. This parameter must be provided.\n" +"#hold_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# when the stepper is not moving. Setting a hold_current is not\n" +"# recommended (see TMC_Drivers.md for details). The default is to\n" +"# not reduce the current.\n" +"#sense_resistor: 0.110\n" +"# The resistance (in ohms) of the motor sense resistor. The default\n" +"# is 0.110 ohms.\n" +"#stealthchop_threshold: 0\n" +"# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +"# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +"# velocity is below this value. The default is 0, which disables\n" +"# \"stealthChop\" mode.\n" +"#driver_MSLUT0: 2863314260\n" +"#driver_MSLUT1: 1251300522\n" +"#driver_MSLUT2: 608774441\n" +"#driver_MSLUT3: 269500962\n" +"#driver_MSLUT4: 4227858431\n" +"#driver_MSLUT5: 3048961917\n" +"#driver_MSLUT6: 1227445590\n" +"#driver_MSLUT7: 4211234\n" +"#driver_W0: 2\n" +"#driver_W1: 1\n" +"#driver_W2: 1\n" +"#driver_W3: 1\n" +"#driver_X1: 128\n" +"#driver_X2: 255\n" +"#driver_X3: 255\n" +"#driver_START_SIN: 0\n" +"#driver_START_SIN90: 247\n" +"# These fields control the Microstep Table registers directly. The optimal\n" +"# wave table is specific to each motor and might vary with current. An\n" +"# optimal configuration will have minimal print artifacts caused by\n" +"# non-linear stepper movement. The values specified above are the default\n" +"# values used by the driver. The value must be specified as a decimal integer\n" +"# (hex form is not supported). In order to compute the wave table fields,\n" +"# see the tmc2130 \"Calculation Sheet\" from the Trinamic website.\n" +"#driver_IHOLDDELAY: 8\n" +"#driver_TPOWERDOWN: 0\n" +"#driver_TBL: 1\n" +"#driver_TOFF: 4\n" +"#driver_HEND: 7\n" +"#driver_HSTRT: 0\n" +"#driver_PWM_AUTOSCALE: True\n" +"#driver_PWM_FREQ: 1\n" +"#driver_PWM_GRAD: 4\n" +"#driver_PWM_AMPL: 128\n" +"#driver_SGT: 0\n" +"# Set the given register during the configuration of the TMC2130\n" +"# chip. This may be used to set custom motor parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# above list.\n" +"#diag0_pin:\n" +"#diag1_pin:\n" +"# The micro-controller pin attached to one of the DIAG lines of the\n" +"# TMC2130 chip. Only a single diag pin should be specified. The pin\n" +"# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +"# this creates a \"tmc2130_stepper_x:virtual_endstop\" virtual pin\n" +"# which may be used as the stepper's endstop_pin. Doing this enables\n" +"# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +"# appropriate sensitivity value.) The default is to not enable\n" +"# sensorless homing.\n" +msgstr "" + +#: docs/Config_Reference.md:block 35 (code) +msgid "" +"[printer]\n" +"kinematics: deltesian\n" +"max_z_velocity:\n" +"# For deltesian printers, this limits the maximum velocity (in mm/s) of\n" +"# moves with z axis movement. This setting can be used to reduce the\n" +"# maximum speed of up/down moves (which require a higher step rate\n" +"# than other moves on a deltesian printer). The default is to use\n" +"# max_velocity for max_z_velocity.\n" +"#max_z_accel:\n" +"# This sets the maximum acceleration (in mm/s^2) of movement along\n" +"# the z axis. Setting this may be useful if the printer can reach higher\n" +"# acceleration on XY moves than Z moves (eg, when using input shaper).\n" +"# The default is to use max_accel for max_z_accel.\n" +"#minimum_z_position: 0\n" +"# The minimum Z position that the user may command the head to move\n" +"# to. The default is 0.\n" +"#min_angle: 5\n" +"# This represents the minimum angle (in degrees) relative to horizontal\n" +"# that the deltesian arms are allowed to achieve. This parameter is\n" +"# intended to restrict the arms from becoming completely horizontal,\n" +"# which would risk accidental inversion of the XZ axis. The default is 5.\n" +"#print_width:\n" +"# The distance (in mm) of valid toolhead X coordinates. One may use\n" +"# this setting to customize the range checking of toolhead moves. If\n" +"# a large value is specified here then it may be possible to command\n" +"# the toolhead into a collision with a tower. This setting usually\n" +"# corresponds to bed width (in mm).\n" +"#slow_ratio: 3\n" +"# The ratio used to limit velocity and acceleration on moves near the\n" +"# extremes of the X axis. If vertical distance divided by horizontal\n" +"# distance exceeds the value of slow_ratio, then velocity and\n" +"# acceleration are limited to half their nominal values. If vertical\n" +"# distance divided by horizontal distance exceeds twice the value of\n" +"# the slow_ratio, then velocity and acceleration are limited to one\n" +"# quarter of their nominal values. The default is 3.\n" +"\n" +"# The stepper_left section is used to describe the stepper controlling\n" +"# the left tower. This section also controls the homing parameters\n" +"# (homing_speed, homing_retract_dist) for all towers.\n" +"[stepper_left]\n" +"position_endstop:\n" +"# Distance (in mm) between the nozzle and the bed when the nozzle is\n" +"# in the center of the build area and the endstops are triggered. This\n" +"# parameter must be provided for stepper_left; for stepper_right this\n" +"# parameter defaults to the value specified for stepper_left.\n" +"arm_length:\n" +"# Length (in mm) of the diagonal rod that connects the tower carriage to\n" +"# the print head. This parameter must be provided for stepper_left; for\n" +"# stepper_right, this parameter defaults to the value specified for\n" +"# stepper_left.\n" +"arm_x_length:\n" +"# Horizontal distance between the print head and the tower when the\n" +"# printers is homed. This parameter must be provided for stepper_left;\n" +"# for stepper_right, this parameter defaults to the value specified for\n" +"# stepper_left.\n" +"\n" +"# The stepper_right section is used to describe the stepper controlling the\n" +"# right tower.\n" +"[stepper_right]\n" +"\n" +"# The stepper_y section is used to describe the stepper controlling\n" +"# the Y axis in a deltesian robot.\n" +"[stepper_y]\n" +msgstr "" + +#: docs/Config_Reference.md:block 97 (code) +msgid "" +"[screws_tilt_adjust]\n" +"#screw1:\n" +"# The (X, Y) coordinate of the first bed leveling screw. This is a\n" +"# position to command the nozzle to so that the probe is directly\n" +"# above the bed screw (or as close as possible while still being\n" +"# above the bed). This is the base screw used in calculations. This\n" +"# parameter must be provided.\n" +"#screw1_name:\n" +"# An arbitrary name for the given screw. This name is displayed when\n" +"# the helper script runs. The default is to use a name based upon\n" +"# the screw XY location.\n" +"#screw2:\n" +"#screw2_name:\n" +"#...\n" +"# Additional bed leveling screws. At least two screws must be\n" +"# defined.\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +"#screw_thread: CW-M3\n" +"# The type of screw used for bed leveling, M3, M4, or M5, and the\n" +"# rotation direction of the knob that is used to level the bed.\n" +"# Accepted values: CW-M3, CCW-M3, CW-M4, CCW-M4, CW-M5, CCW-M5.\n" +"# Default value is CW-M3 which most printers use. A clockwise\n" +"# rotation of the knob decreases the gap between the nozzle and the\n" +"# bed. Conversely, a counter-clockwise rotation increases the gap.\n" +msgstr "" + +#: docs/Config_Reference.md:block 331 (header) +msgid "[tmc2240]" +msgstr "" + +#: docs/Config_Reference.md:block 429 (code) +msgid "" +"[palette2]\n" +"serial:\n" +"# The serial port to connect to the Palette 2.\n" +"#baud: 115200\n" +"# The baud rate to use. The default is 115200.\n" +"#feedrate_splice: 0.8\n" +"# The feedrate to use when splicing, default is 0.8\n" +"#feedrate_normal: 1.0\n" +"# The feedrate to use after splicing, default is 1.0\n" +"#auto_load_speed: 2\n" +"# Extrude feedrate when autoloading, default is 2 (mm/s)\n" +"#auto_cancel_variation: 0.1\n" +"# Auto cancel print when ping variation is above this threshold\n" +msgstr "" + +#: docs/Config_Reference.md:block 439 (paragraph) +msgid "" +"Note that Klipper's current micro-controller support for I2C is generally " +"not tolerant to line noise. Unexpected errors on the I2C wires may result in" +" Klipper raising a run-time error. Klipper's support for error recovery " +"varies between each micro-controller type. It is generally recommended to " +"only use I2C devices that are on the same printed circuit board as the " +"micro-controller." +msgstr "" + +#: docs/Config_Reference.md:block 440 (paragraph) +msgid "" +"Most Klipper micro-controller implementations only support an `i2c_speed` of" +" 100000 (*standard mode*, 100kbit/s). The Klipper \"Linux\" micro-controller" +" supports a 400000 speed (*fast mode*, 400kbit/s), but it must be [set in " +"the operating system](RPi_microcontroller.md#optional-enabling-i2c) and the " +"`i2c_speed` parameter is otherwise ignored. The Klipper \"RP2040\" micro-" +"controller and ATmega AVR family support a rate of 400000 via the " +"`i2c_speed` parameter. All other Klipper micro-controllers use a 100000 rate" +" and ignore the `i2c_speed` parameter." +msgstr "" + +#: docs/Config_Reference.md:block 85 (code) +msgid "" +"[bed_mesh]\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +"#mesh_radius:\n" +"# Defines the radius of the mesh to probe for round beds. Note that\n" +"# the radius is relative to the coordinate specified by the\n" +"# mesh_origin option. This parameter must be provided for round beds\n" +"# and omitted for rectangular beds.\n" +"#mesh_origin:\n" +"# Defines the center X, Y coordinate of the mesh for round beds. This\n" +"# coordinate is relative to the probe's location. It may be useful\n" +"# to adjust the mesh_origin in an effort to maximize the size of the\n" +"# mesh radius. Default is 0, 0. This parameter must be omitted for\n" +"# rectangular beds.\n" +"#mesh_min:\n" +"# Defines the minimum X, Y coordinate of the mesh for rectangular\n" +"# beds. This coordinate is relative to the probe's location. This\n" +"# will be the first point probed, nearest to the origin. This\n" +"# parameter must be provided for rectangular beds.\n" +"#mesh_max:\n" +"# Defines the maximum X, Y coordinate of the mesh for rectangular\n" +"# beds. Adheres to the same principle as mesh_min, however this will\n" +"# be the furthest point probed from the bed's origin. This parameter\n" +"# must be provided for rectangular beds.\n" +"#probe_count: 3, 3\n" +"# For rectangular beds, this is a comma separate pair of integer\n" +"# values X, Y defining the number of points to probe along each\n" +"# axis. A single value is also valid, in which case that value will\n" +"# be applied to both axes. Default is 3, 3.\n" +"#round_probe_count: 5\n" +"# For round beds, this integer value defines the maximum number of\n" +"# points to probe along each axis. This value must be an odd number.\n" +"# Default is 5.\n" +"#fade_start: 1.0\n" +"# The gcode z position in which to start phasing out z-adjustment\n" +"# when fade is enabled. Default is 1.0.\n" +"#fade_end: 0.0\n" +"# The gcode z position in which phasing out completes. When set to a\n" +"# value below fade_start, fade is disabled. It should be noted that\n" +"# fade may add unwanted scaling along the z-axis of a print. If a\n" +"# user wishes to enable fade, a value of 10.0 is recommended.\n" +"# Default is 0.0, which disables fade.\n" +"#fade_target:\n" +"# The z position in which fade should converge. When this value is\n" +"# set to a non-zero value it must be within the range of z-values in\n" +"# the mesh. Users that wish to converge to the z homing position\n" +"# should set this to 0. Default is the average z value of the mesh.\n" +"#split_delta_z: .025\n" +"# The amount of Z difference (in mm) along a move that will trigger\n" +"# a split. Default is .025.\n" +"#move_check_distance: 5.0\n" +"# The distance (in mm) along a move to check for split_delta_z.\n" +"# This is also the minimum length that a move can be split. Default\n" +"# is 5.0.\n" +"#mesh_pps: 2, 2\n" +"# A comma separated pair of integers X, Y defining the number of\n" +"# points per segment to interpolate in the mesh along each axis. A\n" +"# \"segment\" can be defined as the space between each probed point.\n" +"# The user may enter a single value which will be applied to both\n" +"# axes. Default is 2, 2.\n" +"#algorithm: lagrange\n" +"# The interpolation algorithm to use. May be either \"lagrange\" or\n" +"# \"bicubic\". This option will not affect 3x3 grids, which are forced\n" +"# to use lagrange sampling. Default is lagrange.\n" +"#bicubic_tension: .2\n" +"# When using the bicubic algorithm the tension parameter above may\n" +"# be applied to change the amount of slope interpolated. Larger\n" +"# numbers will increase the amount of slope, which results in more\n" +"# curvature in the mesh. Default is .2.\n" +"#zero_reference_position:\n" +"# An optional X,Y coordinate that specifies the location on the bed\n" +"# where Z = 0. When this option is specified the mesh will be offset\n" +"# so that zero Z adjustment occurs at this location. The default is\n" +"# no zero reference.\n" +"#relative_reference_index:\n" +"# **DEPRECATED, use the \"zero_reference_position\" option**\n" +"# The legacy option superceded by the \"zero reference position\".\n" +"# Rather than a coordinate this option takes an integer \"index\" that\n" +"# refers to the location of one of the generated points. It is recommended\n" +"# to use the \"zero_reference_position\" instead of this option for new\n" +"# configurations. The default is no relative reference index.\n" +"#faulty_region_1_min:\n" +"#faulty_region_1_max:\n" +"# Optional points that define a faulty region. See docs/Bed_Mesh.md\n" +"# for details on faulty regions. Up to 99 faulty regions may be added.\n" +"# By default no faulty regions are set.\n" +msgstr "" + +#: docs/Config_Reference.md:block 171 (header) +msgid "[lis2dw]" +msgstr "" + +#: docs/Config_Reference.md:block 172 (paragraph) +msgid "Support for LIS2DW accelerometers." +msgstr "" + +#: docs/Config_Reference.md:block 173 (code) +msgid "" +"[lis2dw]\n" +"cs_pin:\n" +"# The SPI enable pin for the sensor. This parameter must be provided.\n" +"#spi_speed: 5000000\n" +"# The SPI speed (in hz) to use when communicating with the chip.\n" +"# The default is 5000000.\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#axes_map: x, y, z\n" +"# See the \"adxl345\" section for information on this parameter.\n" +msgstr "" + +#: docs/Config_Reference.md:block 176 (code) +msgid "" +"[mpu9250 my_accelerometer]\n" +"#i2c_address:\n" +"# Default is 104 (0x68). If AD0 is high, it would be 0x69 instead.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed: 400000\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters. The default \"i2c_speed\" is 400000.\n" +"#axes_map: x, y, z\n" +"# See the \"adxl345\" section for information on this parameter.\n" +msgstr "" + +#: docs/Config_Reference.md:block 200 (header) +msgid "[axis_twist_compensation]" +msgstr "" + +#: docs/Config_Reference.md:block 201 (paragraph) +msgid "" +"A tool to compensate for inaccurate probe readings due to twist in X gantry." +" See the [Axis Twist Compensation Guide](Axis_Twist_Compensation.md) for " +"more detailed information regarding symptoms, configuration and setup." +msgstr "" + +#: docs/Config_Reference.md:block 202 (code) +msgid "" +"[axis_twist_compensation]\n" +"#speed: 50\n" +"# The speed (in mm/s) of non-probing moves during the calibration.\n" +"# The default is 50.\n" +"#horizontal_move_z: 5\n" +"# The height (in mm) that the head should be commanded to move to\n" +"# just prior to starting a probe operation. The default is 5.\n" +"calibrate_start_x: 20\n" +"# Defines the minimum X coordinate of the calibration\n" +"# This should be the X coordinate that positions the nozzle at the starting\n" +"# calibration position. This parameter must be provided.\n" +"calibrate_end_x: 200\n" +"# Defines the maximum X coordinate of the calibration\n" +"# This should be the X coordinate that positions the nozzle at the ending\n" +"# calibration position. This parameter must be provided.\n" +"calibrate_y: 112.5\n" +"# Defines the Y coordinate of the calibration\n" +"# This should be the Y coordinate that positions the nozzle during the\n" +"# calibration process. This parameter must be provided and is recommended to\n" +"# be near the center of the bed\n" +msgstr "" + +#: docs/Config_Reference.md:block 212 (paragraph) +msgid "" +"Support for cartesian and hybrid_corexy/z printers with dual carriages on a " +"single axis. The carriage mode can be set via the SET_DUAL_CARRIAGE extended" +" g-code command. For example, \"SET_DUAL_CARRIAGE CARRIAGE=1\" command will " +"activate the carriage defined in this section (CARRIAGE=0 will return " +"activation to the primary carriage). Dual carriage support is typically " +"combined with extra extruders - the SET_DUAL_CARRIAGE command is often " +"called at the same time as the ACTIVATE_EXTRUDER command. Be sure to park " +"the carriages during deactivation. Note that during G28 homing, typically " +"the primary carriage is homed first followed by the carriage defined in the " +"`[dual_carriage]` config section. However, the `[dual_carriage]` carriage " +"will be homed first if both carriages home in a positive direction and the " +"[dual_carriage] carriage has a `position_endstop` greater than the primary " +"carriage, or if both carriages home in a negative direction and the " +"`[dual_carriage]` carriage has a `position_endstop` less than the primary " +"carriage." +msgstr "" + +#: docs/Config_Reference.md:block 213 (paragraph) +msgid "" +"Additionally, one could use \"SET_DUAL_CARRIAGE CARRIAGE=1 MODE=COPY\" or " +"\"SET_DUAL_CARRIAGE CARRIAGE=1 MODE=MIRROR\" commands to activate either " +"copying or mirroring mode of the dual carriage, in which case it will follow" +" the motion of the carriage 0 accordingly. These commands can be used to " +"print two parts simultaneously - either two identical parts (in COPY mode) " +"or mirrored parts (in MIRROR mode). Note that COPY and MIRROR modes also " +"require appropriate configuration of the extruder on the dual carriage, " +"which can typically be achieved with \"SYNC_EXTRUDER_MOTION " +"MOTION_QUEUE=extruder EXTRUDER=\" or a similar " +"command." +msgstr "" + +#: docs/Config_Reference.md:block 215 (code) +msgid "" +"[dual_carriage]\n" +"axis:\n" +"# The axis this extra carriage is on (either x or y). This parameter\n" +"# must be provided.\n" +"#safe_distance:\n" +"# The minimum distance (in mm) to enforce between the dual and the primary\n" +"# carriages. If a G-Code command is executed that will bring the carriages\n" +"# closer than the specified limit, such a command will be rejected with an\n" +"# error. If safe_distance is not provided, it will be inferred from\n" +"# position_min and position_max for the dual and primary carriages. If set\n" +"# to 0 (or safe_distance is unset and position_min and position_max are\n" +"# identical for the primary and dual carraiges), the carriages proximity\n" +"# checks will be disabled.\n" +"#step_pin:\n" +"#dir_pin:\n" +"#enable_pin:\n" +"#microsteps:\n" +"#rotation_distance:\n" +"#endstop_pin:\n" +"#position_endstop:\n" +"#position_min:\n" +"#position_max:\n" +"# See the \"stepper\" section for the definition of the above parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 258 (code) +msgid "" +"sensor_type: BME280\n" +"#i2c_address:\n" +"# Default is 118 (0x76). Some BME280 sensors have an address of 119\n" +"# (0x77).\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 259 (header) +msgid "AHT10/AHT20/AHT21 temperature sensor" +msgstr "" + +#: docs/Config_Reference.md:block 260 (paragraph) +msgid "" +"AHT10/AHT20/AHT21 two wire interface (I2C) environmental sensors. Note that " +"these sensors are not intended for use with extruders and heater beds, but " +"rather for monitoring ambient temperature (C) and relative humidity. See " +"[sample-macros.cfg](../config/sample-macros.cfg) for a gcode_macro that may " +"be used to report humidity in addition to temperature." +msgstr "" + +#: docs/Config_Reference.md:block 261 (code) +msgid "" +"sensor_type: AHT10\n" +"# Also use AHT10 for AHT20 and AHT21 sensors.\n" +"#i2c_address:\n" +"# Default is 56 (0x38). Some AHT10 sensors give the option to use\n" +"# 57 (0x39) by moving a resistor.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#aht10_report_time:\n" +"# Interval in seconds between readings. Default is 30, minimum is 5\n" +msgstr "" + +#: docs/Config_Reference.md:block 264 (code) +msgid "" +"sensor_type:\n" +"# Must be \"HTU21D\" , \"SI7013\", \"SI7020\", \"SI7021\" or \"SHT21\"\n" +"#i2c_address:\n" +"# Default is 64 (0x40).\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#htu21d_hold_master:\n" +"# If the sensor can hold the I2C buf while reading. If True no other\n" +"# bus communication can be performed while reading is in progress.\n" +"# Default is False.\n" +"#htu21d_resolution:\n" +"# The resolution of temperature and humidity reading.\n" +"# Valid values are:\n" +"# 'TEMP14_HUM12' -> 14bit for Temp and 12bit for humidity\n" +"# 'TEMP13_HUM10' -> 13bit for Temp and 10bit for humidity\n" +"# 'TEMP12_HUM08' -> 12bit for Temp and 08bit for humidity\n" +"# 'TEMP11_HUM11' -> 11bit for Temp and 11bit for humidity\n" +"# Default is: \"TEMP11_HUM11\"\n" +"#htu21d_report_time:\n" +"# Interval in seconds between readings. Default is 30\n" +msgstr "" + +#: docs/Config_Reference.md:block 267 (code) +msgid "" +"sensor_type: LM75\n" +"#i2c_address:\n" +"# Default is 72 (0x48). Normal range is 72-79 (0x48-0x4F) and the 3\n" +"# low bits of the address are configured via pins on the chip\n" +"# (usually with jumpers or hard wired).\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#lm75_report_time:\n" +"# Interval in seconds between readings. Default is 0.8, with minimum\n" +"# 0.5.\n" +msgstr "" + +#: docs/Config_Reference.md:block 277 (header) +msgid "Combined temperature sensor" +msgstr "" + +#: docs/Config_Reference.md:block 278 (paragraph) +msgid "" +"Combined temperature sensor is a virtual temperature sensor based on several" +" other sensors. This sensor can be used with extruders, heater_generic and " +"heater beds." +msgstr "" + +#: docs/Config_Reference.md:block 279 (code) +msgid "" +"sensor_type: temperature_combined\n" +"#sensor_list:\n" +"# Must be provided. List of sensors to combine to new \"virtual\"\n" +"# sensor.\n" +"# E.g. 'temperature_sensor sensor1,extruder,heater_bed'\n" +"#combination_method:\n" +"# Must be provided. Combination method used for the sensor.\n" +"# Available options are 'max', 'min', 'mean'.\n" +"#maximum_deviation:\n" +"# Must be provided. Maximum permissible deviation between the sensors\n" +"# to combine (e.g. 5 degrees). To disable it, use a large value (e.g. 999.9)\n" +msgstr "" + +#: docs/Config_Reference.md:block 286 (code) +msgid "" +"[heater_fan heatbreak_cooling_fan]\n" +"#pin:\n" +"#max_power:\n" +"#shutdown_speed:\n" +"#cycle_time:\n" +"#hardware_pwm:\n" +"#kick_start_time:\n" +"#off_below:\n" +"#tachometer_pin:\n" +"#tachometer_ppr:\n" +"#tachometer_poll_interval:\n" +"#enable_pin:\n" +"# See the \"fan\" section for a description of the above parameters.\n" +"#heater: extruder\n" +"# Name of the config section defining the heater that this fan is\n" +"# associated with. If a comma separated list of heater names is\n" +"# provided here, then the fan will be enabled when any of the given\n" +"# heaters are enabled. The default is \"extruder\".\n" +"#heater_temp: 50.0\n" +"# A temperature (in Celsius) that the heater must drop below before\n" +"# the fan is disabled. The default is 50 Celsius.\n" +"#fan_speed: 1.0\n" +"# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +"# will be set to when its associated heater is enabled. The default\n" +"# is 1.0\n" +msgstr "" + +#: docs/Config_Reference.md:block 310 (code) +msgid "" +"[pca9533 my_pca9533]\n" +"#i2c_address: 98\n" +"# The i2c address that the chip is using on the i2c bus. Use 98 for\n" +"# the PCA9533/1, 99 for the PCA9533/2. The default is 98.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#initial_RED: 0.0\n" +"#initial_GREEN: 0.0\n" +"#initial_BLUE: 0.0\n" +"#initial_WHITE: 0.0\n" +"# See the \"led\" section for information on these parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 313 (code) +msgid "" +"[pca9632 my_pca9632]\n" +"#i2c_address: 98\n" +"# The i2c address that the chip is using on the i2c bus. This may be\n" +"# 96, 97, 98, or 99. The default is 98.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#scl_pin:\n" +"#sda_pin:\n" +"# Alternatively, if the pca9632 is not connected to a hardware I2C\n" +"# bus, then one may specify the \"clock\" (scl_pin) and \"data\"\n" +"# (sda_pin) pins. The default is to use hardware I2C.\n" +"#color_order: RGBW\n" +"# Set the pixel order of the LED (using a string containing the\n" +"# letters R, G, B, W). The default is RGBW.\n" +"#initial_RED: 0.0\n" +"#initial_GREEN: 0.0\n" +"#initial_BLUE: 0.0\n" +"#initial_WHITE: 0.0\n" +"# See the \"led\" section for information on these parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 337 (code) +msgid "" +"[tmc2208 stepper_x]\n" +"uart_pin:\n" +"# The pin connected to the TMC2208 PDN_UART line. This parameter\n" +"# must be provided.\n" +"#tx_pin:\n" +"# If using separate receive and transmit lines to communicate with\n" +"# the driver then set uart_pin to the receive pin and tx_pin to the\n" +"# transmit pin. The default is to use uart_pin for both reading and\n" +"# writing.\n" +"#select_pins:\n" +"# A comma separated list of pins to set prior to accessing the\n" +"# tmc2208 UART. This may be useful for configuring an analog mux for\n" +"# UART communication. The default is to not configure any pins.\n" +"#interpolate: True\n" +"# If true, enable step interpolation (the driver will internally\n" +"# step at a rate of 256 micro-steps). This interpolation does\n" +"# introduce a small systemic positional deviation - see\n" +"# TMC_Drivers.md for details. The default is True.\n" +"run_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# during stepper movement. This parameter must be provided.\n" +"#hold_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# when the stepper is not moving. Setting a hold_current is not\n" +"# recommended (see TMC_Drivers.md for details). The default is to\n" +"# not reduce the current.\n" +"#sense_resistor: 0.110\n" +"# The resistance (in ohms) of the motor sense resistor. The default\n" +"# is 0.110 ohms.\n" +"#stealthchop_threshold: 0\n" +"# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +"# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +"# velocity is below this value. The default is 0, which disables\n" +"# \"stealthChop\" mode.\n" +"#driver_MULTISTEP_FILT: True\n" +"#driver_IHOLDDELAY: 8\n" +"#driver_TPOWERDOWN: 20\n" +"#driver_TBL: 2\n" +"#driver_TOFF: 3\n" +"#driver_HEND: 0\n" +"#driver_HSTRT: 5\n" +"#driver_PWM_AUTOGRAD: True\n" +"#driver_PWM_AUTOSCALE: True\n" +"#driver_PWM_LIM: 12\n" +"#driver_PWM_REG: 8\n" +"#driver_PWM_FREQ: 1\n" +"#driver_PWM_GRAD: 14\n" +"#driver_PWM_OFS: 36\n" +"# Set the given register during the configuration of the TMC2208\n" +"# chip. This may be used to set custom motor parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# above list.\n" +msgstr "" + +#: docs/Config_Reference.md:block 340 (code) +msgid "" +"[tmc2209 stepper_x]\n" +"uart_pin:\n" +"#tx_pin:\n" +"#select_pins:\n" +"#interpolate: True\n" +"run_current:\n" +"#hold_current:\n" +"#sense_resistor: 0.110\n" +"#stealthchop_threshold: 0\n" +"# See the \"tmc2208\" section for the definition of these parameters.\n" +"#uart_address:\n" +"# The address of the TMC2209 chip for UART messages (an integer\n" +"# between 0 and 3). This is typically used when multiple TMC2209\n" +"# chips are connected to the same UART pin. The default is zero.\n" +"#driver_MULTISTEP_FILT: True\n" +"#driver_IHOLDDELAY: 8\n" +"#driver_TPOWERDOWN: 20\n" +"#driver_TBL: 2\n" +"#driver_TOFF: 3\n" +"#driver_HEND: 0\n" +"#driver_HSTRT: 5\n" +"#driver_PWM_AUTOGRAD: True\n" +"#driver_PWM_AUTOSCALE: True\n" +"#driver_PWM_LIM: 12\n" +"#driver_PWM_REG: 8\n" +"#driver_PWM_FREQ: 1\n" +"#driver_PWM_GRAD: 14\n" +"#driver_PWM_OFS: 36\n" +"#driver_SGTHRS: 0\n" +"# Set the given register during the configuration of the TMC2209\n" +"# chip. This may be used to set custom motor parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# above list.\n" +"#diag_pin:\n" +"# The micro-controller pin attached to the DIAG line of the TMC2209\n" +"# chip. The pin is normally prefaced with \"^\" to enable a pullup.\n" +"# Setting this creates a \"tmc2209_stepper_x:virtual_endstop\" virtual\n" +"# pin which may be used as the stepper's endstop_pin. Doing this\n" +"# enables \"sensorless homing\". (Be sure to also set driver_SGTHRS to\n" +"# an appropriate sensitivity value.) The default is to not enable\n" +"# sensorless homing.\n" +msgstr "" + +#: docs/Config_Reference.md:block 345 (paragraph) +msgid "" +"Configure a TMC2240 stepper motor driver via SPI bus or UART. To use this " +"feature, define a config section with a \"tmc2240\" prefix followed by the " +"name of the corresponding stepper config section (for example, \"[tmc2240 " +"stepper_x]\")." +msgstr "" + +#: docs/Config_Reference.md:block 346 (code) +msgid "" +"[tmc2240 stepper_x]\n" +"cs_pin:\n" +"# The pin corresponding to the TMC2240 chip select line. This pin\n" +"# will be set to low at the start of SPI messages and raised to high\n" +"# after the message completes. This parameter must be provided.\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#uart_pin:\n" +"# The pin connected to the TMC2240 DIAG1/SW line. If this parameter\n" +"# is provided UART communication is used rather then SPI.\n" +"#chain_position:\n" +"#chain_length:\n" +"# These parameters configure an SPI daisy chain. The two parameters\n" +"# define the stepper position in the chain and the total chain length.\n" +"# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +"# The default is to not use an SPI daisy chain.\n" +"#interpolate: True\n" +"# If true, enable step interpolation (the driver will internally\n" +"# step at a rate of 256 micro-steps). The default is True.\n" +"run_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# during stepper movement. This parameter must be provided.\n" +"#hold_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# when the stepper is not moving. Setting a hold_current is not\n" +"# recommended (see TMC_Drivers.md for details). The default is to\n" +"# not reduce the current.\n" +"#rref: 12000\n" +"# The resistance (in ohms) of the resistor between IREF and GND. The\n" +"# default is 12000.\n" +"#stealthchop_threshold: 0\n" +"# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +"# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +"# velocity is below this value. The default is 0, which disables\n" +"# \"stealthChop\" mode.\n" +"#driver_MSLUT0: 2863314260\n" +"#driver_MSLUT1: 1251300522\n" +"#driver_MSLUT2: 608774441\n" +"#driver_MSLUT3: 269500962\n" +"#driver_MSLUT4: 4227858431\n" +"#driver_MSLUT5: 3048961917\n" +"#driver_MSLUT6: 1227445590\n" +"#driver_MSLUT7: 4211234\n" +"#driver_W0: 2\n" +"#driver_W1: 1\n" +"#driver_W2: 1\n" +"#driver_W3: 1\n" +"#driver_X1: 128\n" +"#driver_X2: 255\n" +"#driver_X3: 255\n" +"#driver_START_SIN: 0\n" +"#driver_START_SIN90: 247\n" +"#driver_OFFSET_SIN90: 0\n" +"# These fields control the Microstep Table registers directly. The optimal\n" +"# wave table is specific to each motor and might vary with current. An\n" +"# optimal configuration will have minimal print artifacts caused by\n" +"# non-linear stepper movement. The values specified above are the default\n" +"# values used by the driver. The value must be specified as a decimal integer\n" +"# (hex form is not supported). In order to compute the wave table fields,\n" +"# see the tmc2130 \"Calculation Sheet\" from the Trinamic website.\n" +"# Additionally, this driver also has the OFFSET_SIN90 field which can be used\n" +"# to tune a motor with unbalanced coils. See the `Sine Wave Lookup Table`\n" +"# section in the datasheet for information about this field and how to tune\n" +"# it.\n" +"#driver_MULTISTEP_FILT: True\n" +"#driver_IHOLDDELAY: 6\n" +"#driver_IRUNDELAY: 4\n" +"#driver_TPOWERDOWN: 10\n" +"#driver_TBL: 2\n" +"#driver_TOFF: 3\n" +"#driver_HEND: 2\n" +"#driver_HSTRT: 5\n" +"#driver_FD3: 0\n" +"#driver_TPFD: 4\n" +"#driver_CHM: 0\n" +"#driver_VHIGHFS: 0\n" +"#driver_VHIGHCHM: 0\n" +"#driver_DISS2G: 0\n" +"#driver_DISS2VS: 0\n" +"#driver_PWM_AUTOSCALE: True\n" +"#driver_PWM_AUTOGRAD: True\n" +"#driver_PWM_FREQ: 0\n" +"#driver_FREEWHEEL: 0\n" +"#driver_PWM_GRAD: 0\n" +"#driver_PWM_OFS: 29\n" +"#driver_PWM_REG: 4\n" +"#driver_PWM_LIM: 12\n" +"#driver_SGT: 0\n" +"#driver_SEMIN: 0\n" +"#driver_SEUP: 0\n" +"#driver_SEMAX: 0\n" +"#driver_SEDN: 0\n" +"#driver_SEIMIN: 0\n" +"#driver_SFILT: 0\n" +"#driver_SG4_ANGLE_OFFSET: 1\n" +"# Set the given register during the configuration of the TMC2240\n" +"# chip. This may be used to set custom motor parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# above list.\n" +"#diag0_pin:\n" +"#diag1_pin:\n" +"# The micro-controller pin attached to one of the DIAG lines of the\n" +"# TMC2240 chip. Only a single diag pin should be specified. The pin\n" +"# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +"# this creates a \"tmc2240_stepper_x:virtual_endstop\" virtual pin\n" +"# which may be used as the stepper's endstop_pin. Doing this enables\n" +"# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +"# appropriate sensitivity value.) The default is to not enable\n" +"# sensorless homing.\n" +msgstr "" + +#: docs/Config_Reference.md:block 349 (code) +msgid "" +"[tmc5160 stepper_x]\n" +"cs_pin:\n" +"# The pin corresponding to the TMC5160 chip select line. This pin\n" +"# will be set to low at the start of SPI messages and raised to high\n" +"# after the message completes. This parameter must be provided.\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# See the \"common SPI settings\" section for a description of the\n" +"# above parameters.\n" +"#chain_position:\n" +"#chain_length:\n" +"# These parameters configure an SPI daisy chain. The two parameters\n" +"# define the stepper position in the chain and the total chain length.\n" +"# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +"# The default is to not use an SPI daisy chain.\n" +"#interpolate: True\n" +"# If true, enable step interpolation (the driver will internally\n" +"# step at a rate of 256 micro-steps). The default is True.\n" +"run_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# during stepper movement. This parameter must be provided.\n" +"#hold_current:\n" +"# The amount of current (in amps RMS) to configure the driver to use\n" +"# when the stepper is not moving. Setting a hold_current is not\n" +"# recommended (see TMC_Drivers.md for details). The default is to\n" +"# not reduce the current.\n" +"#sense_resistor: 0.075\n" +"# The resistance (in ohms) of the motor sense resistor. The default\n" +"# is 0.075 ohms.\n" +"#stealthchop_threshold: 0\n" +"# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +"# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +"# velocity is below this value. The default is 0, which disables\n" +"# \"stealthChop\" mode.\n" +"#driver_MSLUT0: 2863314260\n" +"#driver_MSLUT1: 1251300522\n" +"#driver_MSLUT2: 608774441\n" +"#driver_MSLUT3: 269500962\n" +"#driver_MSLUT4: 4227858431\n" +"#driver_MSLUT5: 3048961917\n" +"#driver_MSLUT6: 1227445590\n" +"#driver_MSLUT7: 4211234\n" +"#driver_W0: 2\n" +"#driver_W1: 1\n" +"#driver_W2: 1\n" +"#driver_W3: 1\n" +"#driver_X1: 128\n" +"#driver_X2: 255\n" +"#driver_X3: 255\n" +"#driver_START_SIN: 0\n" +"#driver_START_SIN90: 247\n" +"# These fields control the Microstep Table registers directly. The optimal\n" +"# wave table is specific to each motor and might vary with current. An\n" +"# optimal configuration will have minimal print artifacts caused by\n" +"# non-linear stepper movement. The values specified above are the default\n" +"# values used by the driver. The value must be specified as a decimal integer\n" +"# (hex form is not supported). In order to compute the wave table fields,\n" +"# see the tmc2130 \"Calculation Sheet\" from the Trinamic website.\n" +"#driver_MULTISTEP_FILT: True\n" +"#driver_IHOLDDELAY: 6\n" +"#driver_TPOWERDOWN: 10\n" +"#driver_TBL: 2\n" +"#driver_TOFF: 3\n" +"#driver_HEND: 2\n" +"#driver_HSTRT: 5\n" +"#driver_FD3: 0\n" +"#driver_TPFD: 4\n" +"#driver_CHM: 0\n" +"#driver_VHIGHFS: 0\n" +"#driver_VHIGHCHM: 0\n" +"#driver_DISS2G: 0\n" +"#driver_DISS2VS: 0\n" +"#driver_PWM_AUTOSCALE: True\n" +"#driver_PWM_AUTOGRAD: True\n" +"#driver_PWM_FREQ: 0\n" +"#driver_FREEWHEEL: 0\n" +"#driver_PWM_GRAD: 0\n" +"#driver_PWM_OFS: 30\n" +"#driver_PWM_REG: 4\n" +"#driver_PWM_LIM: 12\n" +"#driver_SGT: 0\n" +"#driver_SEMIN: 0\n" +"#driver_SEUP: 0\n" +"#driver_SEMAX: 0\n" +"#driver_SEDN: 0\n" +"#driver_SEIMIN: 0\n" +"#driver_SFILT: 0\n" +"#driver_DRVSTRENGTH: 0\n" +"#driver_BBMCLKS: 4\n" +"#driver_BBMTIME: 0\n" +"#driver_FILT_ISENSE: 0\n" +"# Set the given register during the configuration of the TMC5160\n" +"# chip. This may be used to set custom motor parameters. The\n" +"# defaults for each parameter are next to the parameter name in the\n" +"# above list.\n" +"#diag0_pin:\n" +"#diag1_pin:\n" +"# The micro-controller pin attached to one of the DIAG lines of the\n" +"# TMC5160 chip. Only a single diag pin should be specified. The pin\n" +"# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +"# this creates a \"tmc5160_stepper_x:virtual_endstop\" virtual pin\n" +"# which may be used as the stepper's endstop_pin. Doing this enables\n" +"# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +"# appropriate sensitivity value.) The default is to not enable\n" +"# sensorless homing.\n" +msgstr "" + +#: docs/Config_Reference.md:block 356 (code) +msgid "" +"[mcp4451 my_digipot]\n" +"i2c_address:\n" +"# The i2c address that the chip is using on the i2c bus. This\n" +"# parameter must be provided.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#wiper_0:\n" +"#wiper_1:\n" +"#wiper_2:\n" +"#wiper_3:\n" +"# The value to statically set the given MCP4451 \"wiper\" to. This is\n" +"# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +"# highest resistance and 0.0 being the lowest resistance. However,\n" +"# the range may be changed with the 'scale' parameter (see below).\n" +"# If a wiper is not specified then it is left unconfigured.\n" +"#scale:\n" +"# This parameter can be used to alter how the 'wiper_x' parameters\n" +"# are interpreted. If provided, then the 'wiper_x' parameters should\n" +"# be between 0.0 and 'scale'. This may be useful when the MCP4451 is\n" +"# used to set stepper voltage references. The 'scale' can be set to\n" +"# the equivalent stepper amperage if the MCP4451 were at its highest\n" +"# resistance, and then the 'wiper_x' parameters can be specified\n" +"# using the desired amperage value for the stepper. The default is\n" +"# to not scale the 'wiper_x' parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 359 (code) +msgid "" +"[mcp4728 my_dac]\n" +"#i2c_address: 96\n" +"# The i2c address that the chip is using on the i2c bus. The default\n" +"# is 96.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +"#channel_a:\n" +"#channel_b:\n" +"#channel_c:\n" +"#channel_d:\n" +"# The value to statically set the given MCP4728 channel to. This is\n" +"# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +"# highest voltage (2.048V) and 0.0 being the lowest voltage.\n" +"# However, the range may be changed with the 'scale' parameter (see\n" +"# below). If a channel is not specified then it is left\n" +"# unconfigured.\n" +"#scale:\n" +"# This parameter can be used to alter how the 'channel_x' parameters\n" +"# are interpreted. If provided, then the 'channel_x' parameters\n" +"# should be between 0.0 and 'scale'. This may be useful when the\n" +"# MCP4728 is used to set stepper voltage references. The 'scale' can\n" +"# be set to the equivalent stepper amperage if the MCP4728 were at\n" +"# its highest voltage (2.048V), and then the 'channel_x' parameters\n" +"# can be specified using the desired amperage value for the\n" +"# stepper. The default is to not scale the 'channel_x' parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 384 (code) +msgid "" +"[display]\n" +"lcd_type:\n" +"# Set to either \"ssd1306\" or \"sh1106\" for the given display type.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# Optional parameters available for displays connected via an i2c\n" +"# bus. See the \"common I2C settings\" section for a description of\n" +"# the above parameters.\n" +"#cs_pin:\n" +"#dc_pin:\n" +"#spi_speed:\n" +"#spi_bus:\n" +"#spi_software_sclk_pin:\n" +"#spi_software_mosi_pin:\n" +"#spi_software_miso_pin:\n" +"# The pins connected to the lcd when in \"4-wire\" spi mode. See the\n" +"# \"common SPI settings\" section for a description of the parameters\n" +"# that start with \"spi_\". The default is to use i2c mode for the\n" +"# display.\n" +"#reset_pin:\n" +"# A reset pin may be specified on the display. If it is not\n" +"# specified then the hardware must have a pull-up on the\n" +"# corresponding lcd line.\n" +"#contrast:\n" +"# The contrast to set. The value may range from 0 to 256 and the\n" +"# default is 239.\n" +"#vcomh: 0\n" +"# Set the Vcomh value on the display. This value is associated with\n" +"# a \"smearing\" effect on some OLED displays. The value may range\n" +"# from 0 to 63. Default is 0.\n" +"#invert: False\n" +"# TRUE inverts the pixels on certain OLED displays. The default is\n" +"# False.\n" +"#x_offset: 0\n" +"# Set the horizontal offset value on SH1106 displays. The default is\n" +"# 0.\n" +"...\n" +msgstr "" + +#: docs/Config_Reference.md:block 425 (code) +msgid "" +"[sx1509 my_sx1509]\n" +"i2c_address:\n" +"# I2C address used by this expander. Depending on the hardware\n" +"# jumpers this is one out of the following addresses: 62 63 112\n" +"# 113. This parameter must be provided.\n" +"#i2c_mcu:\n" +"#i2c_bus:\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"#i2c_speed:\n" +"# See the \"common I2C settings\" section for a description of the\n" +"# above parameters.\n" +msgstr "" + +#: docs/Config_Reference.md:block 454 (code) +msgid "" +"#i2c_address:\n" +"# The i2c address of the device. This must specified as a decimal\n" +"# number (not in hex). The default depends on the type of device.\n" +"#i2c_mcu:\n" +"# The name of the micro-controller that the chip is connected to.\n" +"# The default is \"mcu\".\n" +"#i2c_bus:\n" +"# If the micro-controller supports multiple I2C busses then one may\n" +"# specify the micro-controller bus name here. The default depends on\n" +"# the type of micro-controller.\n" +"#i2c_software_scl_pin:\n" +"#i2c_software_sda_pin:\n" +"# Specify these parameters to use micro-controller software based\n" +"# I2C \"bit-banging\" support. The two parameters should the two pins\n" +"# on the micro-controller to use for the scl and sda wires. The\n" +"# default is to use hardware based I2C support as specified by the\n" +"# i2c_bus parameter.\n" +"#i2c_speed:\n" +"# The I2C speed (in Hz) to use when communicating with the device.\n" +"# The Klipper implementation on most micro-controllers is hard-coded\n" +"# to 100000 and changing this value has no effect. The default is\n" +"# 100000. Linux, RP2040 and ATmega support 400000.\n" +msgstr "" + +#~ msgid "" +#~ "Support for cartesian printers with dual carriages on a single axis. The " +#~ "active carriage is set via the SET_DUAL_CARRIAGE extended g-code command. " +#~ "The \"SET_DUAL_CARRIAGE CARRIAGE=1\" command will activate the carriage " +#~ "defined in this section (CARRIAGE=0 will return activation to the primary " +#~ "carriage). Dual carriage support is typically combined with extra extruders " +#~ "- the SET_DUAL_CARRIAGE command is often called at the same time as the " +#~ "ACTIVATE_EXTRUDER command. Be sure to park the carriages during " +#~ "deactivation." +#~ msgstr "" + +#~ msgid "" +#~ "[dual_carriage]\n" +#~ "axis:\n" +#~ "# The axis this extra carriage is on (either x or y). This parameter\n" +#~ "# must be provided.\n" +#~ "#step_pin:\n" +#~ "#dir_pin:\n" +#~ "#enable_pin:\n" +#~ "#microsteps:\n" +#~ "#rotation_distance:\n" +#~ "#endstop_pin:\n" +#~ "#position_endstop:\n" +#~ "#position_min:\n" +#~ "#position_max:\n" +#~ "# See the \"stepper\" section for the definition of the above parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "sensor_type: BME280\n" +#~ "#i2c_address:\n" +#~ "# Default is 118 (0x76). Some BME280 sensors have an address of 119\n" +#~ "# (0x77).\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "sensor_type:\n" +#~ "# Must be \"HTU21D\" , \"SI7013\", \"SI7020\", \"SI7021\" or \"SHT21\"\n" +#~ "#i2c_address:\n" +#~ "# Default is 64 (0x40).\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#htu21d_hold_master:\n" +#~ "# If the sensor can hold the I2C buf while reading. If True no other\n" +#~ "# bus communication can be performed while reading is in progress.\n" +#~ "# Default is False.\n" +#~ "#htu21d_resolution:\n" +#~ "# The resolution of temperature and humidity reading.\n" +#~ "# Valid values are:\n" +#~ "# 'TEMP14_HUM12' -> 14bit for Temp and 12bit for humidity\n" +#~ "# 'TEMP13_HUM10' -> 13bit for Temp and 10bit for humidity\n" +#~ "# 'TEMP12_HUM08' -> 12bit for Temp and 08bit for humidity\n" +#~ "# 'TEMP11_HUM11' -> 11bit for Temp and 11bit for humidity\n" +#~ "# Default is: \"TEMP11_HUM11\"\n" +#~ "#htu21d_report_time:\n" +#~ "# Interval in seconds between readings. Default is 30\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2209 stepper_x]\n" +#~ "uart_pin:\n" +#~ "#tx_pin:\n" +#~ "#select_pins:\n" +#~ "#interpolate: True\n" +#~ "run_current:\n" +#~ "#hold_current:\n" +#~ "#sense_resistor: 0.110\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# See the \"tmc2208\" section for the definition of these parameters.\n" +#~ "#uart_address:\n" +#~ "# The address of the TMC2209 chip for UART messages (an integer\n" +#~ "# between 0 and 3). This is typically used when multiple TMC2209\n" +#~ "# chips are connected to the same UART pin. The default is zero.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 20\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 0\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_PWM_REG: 8\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 14\n" +#~ "#driver_PWM_OFS: 36\n" +#~ "#driver_SGTHRS: 0\n" +#~ "# Set the given register during the configuration of the TMC2209\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag_pin:\n" +#~ "# The micro-controller pin attached to the DIAG line of the TMC2209\n" +#~ "# chip. The pin is normally prefaced with \"^\" to enable a pullup.\n" +#~ "# Setting this creates a \"tmc2209_stepper_x:virtual_endstop\" virtual\n" +#~ "# pin which may be used as the stepper's endstop_pin. Doing this\n" +#~ "# enables \"sensorless homing\". (Be sure to also set driver_SGTHRS to\n" +#~ "# an appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[mcp4451 my_digipot]\n" +#~ "i2c_address:\n" +#~ "# The i2c address that the chip is using on the i2c bus. This\n" +#~ "# parameter must be provided.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#wiper_0:\n" +#~ "#wiper_1:\n" +#~ "#wiper_2:\n" +#~ "#wiper_3:\n" +#~ "# The value to statically set the given MCP4451 \"wiper\" to. This is\n" +#~ "# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +#~ "# highest resistance and 0.0 being the lowest resistance. However,\n" +#~ "# the range may be changed with the 'scale' parameter (see below).\n" +#~ "# If a wiper is not specified then it is left unconfigured.\n" +#~ "#scale:\n" +#~ "# This parameter can be used to alter how the 'wiper_x' parameters\n" +#~ "# are interpreted. If provided, then the 'wiper_x' parameters should\n" +#~ "# be between 0.0 and 'scale'. This may be useful when the MCP4451 is\n" +#~ "# used to set stepper voltage references. The 'scale' can be set to\n" +#~ "# the equivalent stepper amperage if the MCP4451 were at its highest\n" +#~ "# resistance, and then the 'wiper_x' parameters can be specified\n" +#~ "# using the desired amperage value for the stepper. The default is\n" +#~ "# to not scale the 'wiper_x' parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[mcp4728 my_dac]\n" +#~ "#i2c_address: 96\n" +#~ "# The i2c address that the chip is using on the i2c bus. The default\n" +#~ "# is 96.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#channel_a:\n" +#~ "#channel_b:\n" +#~ "#channel_c:\n" +#~ "#channel_d:\n" +#~ "# The value to statically set the given MCP4728 channel to. This is\n" +#~ "# typically set to a number between 0.0 and 1.0 with 1.0 being the\n" +#~ "# highest voltage (2.048V) and 0.0 being the lowest voltage.\n" +#~ "# However, the range may be changed with the 'scale' parameter (see\n" +#~ "# below). If a channel is not specified then it is left\n" +#~ "# unconfigured.\n" +#~ "#scale:\n" +#~ "# This parameter can be used to alter how the 'channel_x' parameters\n" +#~ "# are interpreted. If provided, then the 'channel_x' parameters\n" +#~ "# should be between 0.0 and 'scale'. This may be useful when the\n" +#~ "# MCP4728 is used to set stepper voltage references. The 'scale' can\n" +#~ "# be set to the equivalent stepper amperage if the MCP4728 were at\n" +#~ "# its highest voltage (2.048V), and then the 'channel_x' parameters\n" +#~ "# can be specified using the desired amperage value for the\n" +#~ "# stepper. The default is to not scale the 'channel_x' parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[display]\n" +#~ "lcd_type:\n" +#~ "# Set to either \"ssd1306\" or \"sh1106\" for the given display type.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# Optional parameters available for displays connected via an i2c\n" +#~ "# bus. See the \"common I2C settings\" section for a description of\n" +#~ "# the above parameters.\n" +#~ "#cs_pin:\n" +#~ "#dc_pin:\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# The pins connected to the lcd when in \"4-wire\" spi mode. See the\n" +#~ "# \"common SPI settings\" section for a description of the parameters\n" +#~ "# that start with \"spi_\". The default is to use i2c mode for the\n" +#~ "# display.\n" +#~ "#reset_pin:\n" +#~ "# A reset pin may be specified on the display. If it is not\n" +#~ "# specified then the hardware must have a pull-up on the\n" +#~ "# corresponding lcd line.\n" +#~ "#contrast:\n" +#~ "# The contrast to set. The value may range from 0 to 256 and the\n" +#~ "# default is 239.\n" +#~ "#vcomh: 0\n" +#~ "# Set the Vcomh value on the display. This value is associated with\n" +#~ "# a \"smearing\" effect on some OLED displays. The value may range\n" +#~ "# from 0 to 63. Default is 0.\n" +#~ "#invert: False\n" +#~ "# TRUE inverts the pixels on certain OLED displays. The default is\n" +#~ "# False.\n" +#~ "#x_offset: 0\n" +#~ "# Set the horizontal offset value on SH1106 displays. The default is\n" +#~ "# 0.\n" +#~ "...\n" +#~ msgstr "" + +#~ msgid "" +#~ "[sx1509 my_sx1509]\n" +#~ "i2c_address:\n" +#~ "# I2C address used by this expander. Depending on the hardware\n" +#~ "# jumpers this is one out of the following addresses: 62 63 112\n" +#~ "# 113. This parameter must be provided.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#i2c_bus:\n" +#~ "# If the I2C implementation of your micro-controller supports\n" +#~ "# multiple I2C busses, you may specify the bus name here. The\n" +#~ "# default is to use the default micro-controller i2c bus.\n" +#~ msgstr "" + +#~ msgid "" +#~ "sensor_type: LM75\n" +#~ "#i2c_address:\n" +#~ "# Default is 72 (0x48). Normal range is 72-79 (0x48-0x4F) and the 3\n" +#~ "# low bits of the address are configured via pins on the chip\n" +#~ "# (usually with jumpers or hard wired).\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#lm75_report_time:\n" +#~ "# Interval in seconds between readings. Default is 0.8, with minimum\n" +#~ "# 0.5.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2208 stepper_x]\n" +#~ "uart_pin:\n" +#~ "# The pin connected to the TMC2208 PDN_UART line. This parameter\n" +#~ "# must be provided.\n" +#~ "#tx_pin:\n" +#~ "# If using separate receive and transmit lines to communicate with\n" +#~ "# the driver then set uart_pin to the receive pin and tx_pin to the\n" +#~ "# transmit pin. The default is to use uart_pin for both reading and\n" +#~ "# writing.\n" +#~ "#select_pins:\n" +#~ "# A comma separated list of pins to set prior to accessing the\n" +#~ "# tmc2208 UART. This may be useful for configuring an analog mux for\n" +#~ "# UART communication. The default is to not configure any pins.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). This interpolation does\n" +#~ "# introduce a small systemic positional deviation - see\n" +#~ "# TMC_Drivers.md for details. The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. Setting a hold_current is not\n" +#~ "# recommended (see TMC_Drivers.md for details). The default is to\n" +#~ "# not reduce the current.\n" +#~ "#sense_resistor: 0.110\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.110 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 20\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 0\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_PWM_REG: 8\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 14\n" +#~ "#driver_PWM_OFS: 36\n" +#~ "# Set the given register during the configuration of the TMC2208\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[bed_mesh]\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#mesh_radius:\n" +#~ "# Defines the radius of the mesh to probe for round beds. Note that\n" +#~ "# the radius is relative to the coordinate specified by the\n" +#~ "# mesh_origin option. This parameter must be provided for round beds\n" +#~ "# and omitted for rectangular beds.\n" +#~ "#mesh_origin:\n" +#~ "# Defines the center X, Y coordinate of the mesh for round beds. This\n" +#~ "# coordinate is relative to the probe's location. It may be useful\n" +#~ "# to adjust the mesh_origin in an effort to maximize the size of the\n" +#~ "# mesh radius. Default is 0, 0. This parameter must be omitted for\n" +#~ "# rectangular beds.\n" +#~ "#mesh_min:\n" +#~ "# Defines the minimum X, Y coordinate of the mesh for rectangular\n" +#~ "# beds. This coordinate is relative to the probe's location. This\n" +#~ "# will be the first point probed, nearest to the origin. This\n" +#~ "# parameter must be provided for rectangular beds.\n" +#~ "#mesh_max:\n" +#~ "# Defines the maximum X, Y coordinate of the mesh for rectangular\n" +#~ "# beds. Adheres to the same principle as mesh_min, however this will\n" +#~ "# be the furthest point probed from the bed's origin. This parameter\n" +#~ "# must be provided for rectangular beds.\n" +#~ "#probe_count: 3, 3\n" +#~ "# For rectangular beds, this is a comma separate pair of integer\n" +#~ "# values X, Y defining the number of points to probe along each\n" +#~ "# axis. A single value is also valid, in which case that value will\n" +#~ "# be applied to both axes. Default is 3, 3.\n" +#~ "#round_probe_count: 5\n" +#~ "# For round beds, this integer value defines the maximum number of\n" +#~ "# points to probe along each axis. This value must be an odd number.\n" +#~ "# Default is 5.\n" +#~ "#fade_start: 1.0\n" +#~ "# The gcode z position in which to start phasing out z-adjustment\n" +#~ "# when fade is enabled. Default is 1.0.\n" +#~ "#fade_end: 0.0\n" +#~ "# The gcode z position in which phasing out completes. When set to a\n" +#~ "# value below fade_start, fade is disabled. It should be noted that\n" +#~ "# fade may add unwanted scaling along the z-axis of a print. If a\n" +#~ "# user wishes to enable fade, a value of 10.0 is recommended.\n" +#~ "# Default is 0.0, which disables fade.\n" +#~ "#fade_target:\n" +#~ "# The z position in which fade should converge. When this value is\n" +#~ "# set to a non-zero value it must be within the range of z-values in\n" +#~ "# the mesh. Users that wish to converge to the z homing position\n" +#~ "# should set this to 0. Default is the average z value of the mesh.\n" +#~ "#split_delta_z: .025\n" +#~ "# The amount of Z difference (in mm) along a move that will trigger\n" +#~ "# a split. Default is .025.\n" +#~ "#move_check_distance: 5.0\n" +#~ "# The distance (in mm) along a move to check for split_delta_z.\n" +#~ "# This is also the minimum length that a move can be split. Default\n" +#~ "# is 5.0.\n" +#~ "#mesh_pps: 2, 2\n" +#~ "# A comma separated pair of integers X, Y defining the number of\n" +#~ "# points per segment to interpolate in the mesh along each axis. A\n" +#~ "# \"segment\" can be defined as the space between each probed point.\n" +#~ "# The user may enter a single value which will be applied to both\n" +#~ "# axes. Default is 2, 2.\n" +#~ "#algorithm: lagrange\n" +#~ "# The interpolation algorithm to use. May be either \"lagrange\" or\n" +#~ "# \"bicubic\". This option will not affect 3x3 grids, which are forced\n" +#~ "# to use lagrange sampling. Default is lagrange.\n" +#~ "#bicubic_tension: .2\n" +#~ "# When using the bicubic algorithm the tension parameter above may\n" +#~ "# be applied to change the amount of slope interpolated. Larger\n" +#~ "# numbers will increase the amount of slope, which results in more\n" +#~ "# curvature in the mesh. Default is .2.\n" +#~ "#relative_reference_index:\n" +#~ "# A point index in the mesh to reference all z values to. Enabling\n" +#~ "# this parameter produces a mesh relative to the probed z position\n" +#~ "# at the provided index.\n" +#~ "#faulty_region_1_min:\n" +#~ "#faulty_region_1_max:\n" +#~ "# Optional points that define a faulty region. See docs/Bed_Mesh.md\n" +#~ "# for details on faulty regions. Up to 99 faulty regions may be added.\n" +#~ "# By default no faulty regions are set.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[pca9533 my_pca9533]\n" +#~ "#i2c_address: 98\n" +#~ "# The i2c address that the chip is using on the i2c bus. Use 98 for\n" +#~ "# the PCA9533/1, 99 for the PCA9533/2. The default is 98.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# See the \"led\" section for information on these parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[pca9632 my_pca9632]\n" +#~ "#i2c_address: 98\n" +#~ "# The i2c address that the chip is using on the i2c bus. This may be\n" +#~ "# 96, 97, 98, or 99. The default is 98.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#scl_pin:\n" +#~ "#sda_pin:\n" +#~ "# Alternatively, if the pca9632 is not connected to a hardware I2C\n" +#~ "# bus, then one may specify the \"clock\" (scl_pin) and \"data\"\n" +#~ "# (sda_pin) pins. The default is to use hardware I2C.\n" +#~ "#color_order: RGBW\n" +#~ "# Set the pixel order of the LED (using a string containing the\n" +#~ "# letters R, G, B, W). The default is RGBW.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# See the \"led\" section for information on these parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[heater_fan my_nozzle_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "#enable_pin:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#heater: extruder\n" +#~ "# Name of the config section defining the heater that this fan is\n" +#~ "# associated with. If a comma separated list of heater names is\n" +#~ "# provided here, then the fan will be enabled when any of the given\n" +#~ "# heaters are enabled. The default is \"extruder\".\n" +#~ "#heater_temp: 50.0\n" +#~ "# A temperature (in Celsius) that the heater must drop below before\n" +#~ "# the fan is disabled. The default is 50 Celsius.\n" +#~ "#fan_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when its associated heater is enabled. The default\n" +#~ "# is 1.0\n" +#~ msgstr "" + +#~ msgid "" +#~ "[mpu9250 my_accelerometer]\n" +#~ "#i2c_address:\n" +#~ "# Default is 104 (0x68). If AD0 is high, it would be 0x69 instead.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed: 400000\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters. The default \"i2c_speed\" is 400000.\n" +#~ "#axes_map: x, y, z\n" +#~ "# See the \"adxl345\" section for information on this parameter.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc5160 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC5160 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. Setting a hold_current is not\n" +#~ "# recommended (see TMC_Drivers.md for details). The default is to\n" +#~ "# not reduce the current.\n" +#~ "#sense_resistor: 0.075\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.075 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_MSLUT0: 2863314260\n" +#~ "#driver_MSLUT1: 1251300522\n" +#~ "#driver_MSLUT2: 608774441\n" +#~ "#driver_MSLUT3: 269500962\n" +#~ "#driver_MSLUT4: 4227858431\n" +#~ "#driver_MSLUT5: 3048961917\n" +#~ "#driver_MSLUT6: 1227445590\n" +#~ "#driver_MSLUT7: 4211234\n" +#~ "#driver_W0: 2\n" +#~ "#driver_W1: 1\n" +#~ "#driver_W2: 1\n" +#~ "#driver_W3: 1\n" +#~ "#driver_X1: 128\n" +#~ "#driver_X2: 255\n" +#~ "#driver_X3: 255\n" +#~ "#driver_START_SIN: 0\n" +#~ "#driver_START_SIN90: 247\n" +#~ "# These fields control the Microstep Table registers directly. The optimal\n" +#~ "# wave table is specific to each motor and might vary with current. An\n" +#~ "# optimal configuration will have minimal print artifacts caused by\n" +#~ "# non-linear stepper movement. The values specified above are the default\n" +#~ "# values used by the driver. The value must be specified as a decimal integer\n" +#~ "# (hex form is not supported). In order to compute the wave table fields,\n" +#~ "# see the tmc2130 \"Calculation Sheet\" from the Trinamic website.\n" +#~ "#driver_IHOLDDELAY: 6\n" +#~ "#driver_TPOWERDOWN: 10\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 2\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_FD3: 0\n" +#~ "#driver_TPFD: 4\n" +#~ "#driver_CHM: 0\n" +#~ "#driver_VHIGHFS: 0\n" +#~ "#driver_VHIGHCHM: 0\n" +#~ "#driver_DISS2G: 0\n" +#~ "#driver_DISS2VS: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_FREQ: 0\n" +#~ "#driver_FREEWHEEL: 0\n" +#~ "#driver_PWM_GRAD: 0\n" +#~ "#driver_PWM_OFS: 30\n" +#~ "#driver_PWM_REG: 4\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_SGT: 0\n" +#~ "#driver_SEMIN: 0\n" +#~ "#driver_SEUP: 0\n" +#~ "#driver_SEMAX: 0\n" +#~ "#driver_SEDN: 0\n" +#~ "#driver_SEIMIN: 0\n" +#~ "#driver_SFILT: 0\n" +#~ "# Set the given register during the configuration of the TMC5160\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC5160 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc5160_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Configure a TMC2240 stepper motor driver via SPI bus. To use this feature, " +#~ "define a config section with a \"tmc2240\" prefix followed by the name of " +#~ "the corresponding stepper config section (for example, \"[tmc2240 " +#~ "stepper_x]\")." +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2240 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC2240 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. Setting a hold_current is not\n" +#~ "# recommended (see TMC_Drivers.md for details). The default is to\n" +#~ "# not reduce the current.\n" +#~ "#rref: 12000\n" +#~ "# The resistance (in ohms) of the resistor between IREF and GND. The\n" +#~ "# default is 12000.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_MSLUT0: 2863314260\n" +#~ "#driver_MSLUT1: 1251300522\n" +#~ "#driver_MSLUT2: 608774441\n" +#~ "#driver_MSLUT3: 269500962\n" +#~ "#driver_MSLUT4: 4227858431\n" +#~ "#driver_MSLUT5: 3048961917\n" +#~ "#driver_MSLUT6: 1227445590\n" +#~ "#driver_MSLUT7: 4211234\n" +#~ "#driver_W0: 2\n" +#~ "#driver_W1: 1\n" +#~ "#driver_W2: 1\n" +#~ "#driver_W3: 1\n" +#~ "#driver_X1: 128\n" +#~ "#driver_X2: 255\n" +#~ "#driver_X3: 255\n" +#~ "#driver_START_SIN: 0\n" +#~ "#driver_START_SIN90: 247\n" +#~ "#driver_OFFSET_SIN90: 0\n" +#~ "# These fields control the Microstep Table registers directly. The optimal\n" +#~ "# wave table is specific to each motor and might vary with current. An\n" +#~ "# optimal configuration will have minimal print artifacts caused by\n" +#~ "# non-linear stepper movement. The values specified above are the default\n" +#~ "# values used by the driver. The value must be specified as a decimal integer\n" +#~ "# (hex form is not supported). In order to compute the wave table fields,\n" +#~ "# see the tmc2130 \"Calculation Sheet\" from the Trinamic website.\n" +#~ "# Additionally, this driver also has the OFFSET_SIN90 field which can be used\n" +#~ "# to tune a motor with unbalanced coils. See the `Sine Wave Lookup Table`\n" +#~ "# section in the datasheet for information about this field and how to tune\n" +#~ "# it.\n" +#~ "#driver_IHOLDDELAY: 6\n" +#~ "#driver_IRUNDELAY: 4\n" +#~ "#driver_TPOWERDOWN: 10\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 2\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_FD3: 0\n" +#~ "#driver_TPFD: 4\n" +#~ "#driver_CHM: 0\n" +#~ "#driver_VHIGHFS: 0\n" +#~ "#driver_VHIGHCHM: 0\n" +#~ "#driver_DISS2G: 0\n" +#~ "#driver_DISS2VS: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_FREQ: 0\n" +#~ "#driver_FREEWHEEL: 0\n" +#~ "#driver_PWM_GRAD: 0\n" +#~ "#driver_PWM_OFS: 29\n" +#~ "#driver_PWM_REG: 4\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_SGT: 0\n" +#~ "#driver_SEMIN: 0\n" +#~ "#driver_SEUP: 0\n" +#~ "#driver_SEMAX: 0\n" +#~ "#driver_SEDN: 0\n" +#~ "#driver_SEIMIN: 0\n" +#~ "#driver_SFILT: 0\n" +#~ "#driver_SG4_ANGLE_OFFSET: 1\n" +#~ "# Set the given register during the configuration of the TMC2240\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC2240 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc2240_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "#i2c_address:\n" +#~ "# The i2c address of the device. This must specified as a decimal\n" +#~ "# number (not in hex). The default depends on the type of device.\n" +#~ "#i2c_mcu:\n" +#~ "# The name of the micro-controller that the chip is connected to.\n" +#~ "# The default is \"mcu\".\n" +#~ "#i2c_bus:\n" +#~ "# If the micro-controller supports multiple I2C busses then one may\n" +#~ "# specify the micro-controller bus name here. The default depends on\n" +#~ "# the type of micro-controller.\n" +#~ "#i2c_speed:\n" +#~ "# The I2C speed (in Hz) to use when communicating with the device.\n" +#~ "# The Klipper implementation on most micro-controllers is hard-coded\n" +#~ "# to 100000 and changing this value has no effect. The default is\n" +#~ "# 100000. Linux, RP2040 and ATmega support 400000.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[palette2]\n" +#~ "serial:\n" +#~ "# The serial port to connect to the Palette 2.\n" +#~ "#baud: 115200\n" +#~ "# The baud rate to use. The default is 115200.\n" +#~ "#feedrate_splice: 0.8\n" +#~ "# The feedrate to use when splicing, default is 0.8\n" +#~ "#feedrate_normal: 1.0\n" +#~ "# The feedrate to use after splicing, default is 1.0\n" +#~ "#auto_load_speed: 2\n" +#~ "# Extrude feedrate when autoloading, default is 2 (mm/s)\n" +#~ "#auto_cancel_variation: 0.1\n" +#~ "# Auto cancel print when ping varation is above this threshold\n" +#~ msgstr "" + +#~ msgid "" +#~ "[screws_tilt_adjust]\n" +#~ "#screw1:\n" +#~ "# The (X, Y) coordinate of the first bed leveling screw. This is a\n" +#~ "# position to command the nozzle to so that the probe is directly\n" +#~ "# above the bed screw (or as close as possible while still being\n" +#~ "# above the bed). This is the base screw used in calculations. This\n" +#~ "# parameter must be provided.\n" +#~ "#screw1_name:\n" +#~ "# An arbitrary name for the given screw. This name is displayed when\n" +#~ "# the helper script runs. The default is to use a name based upon\n" +#~ "# the screw XY location.\n" +#~ "#screw2:\n" +#~ "#screw2_name:\n" +#~ "#...\n" +#~ "# Additional bed leveling screws. At least two screws must be\n" +#~ "# defined.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#screw_thread: CW-M3\n" +#~ "# The type of screw used for bed level, M3, M4 or M5 and the\n" +#~ "# direction of the knob used to level the bed, clockwise decrease\n" +#~ "# counter-clockwise decrease.\n" +#~ "# Accepted values: CW-M3, CCW-M3, CW-M4, CCW-M4, CW-M5, CCW-M5.\n" +#~ "# Default value is CW-M3, most printers use an M3 screw and\n" +#~ "# turning the knob clockwise decrease distance.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Note that Klipper's current micro-controller support for i2c is generally " +#~ "not tolerant to line noise. Unexpected errors on the i2c wires may result in" +#~ " Klipper raising a run-time error. Klipper's support for error recovery " +#~ "varies between each micro-controller type. It is generally recommended to " +#~ "only use i2c devices that are on the same printed circuit board as the " +#~ "micro-controller." +#~ msgstr "" + +#~ msgid "" +#~ "Most Klipper micro-controller implementations only support an `i2c_speed` of" +#~ " 100000. The Klipper \"linux\" micro-controller supports a 400000 speed, but" +#~ " it must be [set in the operating system](RPi_microcontroller.md#optional-" +#~ "enabling-i2c) and the `i2c_speed` parameter is otherwise ignored. The " +#~ "Klipper \"rp2040\" micro-controller supports a rate of 400000 via the " +#~ "`i2c_speed` parameter. All other Klipper micro-controllers use a 100000 rate" +#~ " and ignore the `i2c_speed` parameter." +#~ msgstr "" + +#~ msgid "" +#~ "#i2c_address:\n" +#~ "# The i2c address of the device. This must specified as a decimal\n" +#~ "# number (not in hex). The default depends on the type of device.\n" +#~ "#i2c_mcu:\n" +#~ "# The name of the micro-controller that the chip is connected to.\n" +#~ "# The default is \"mcu\".\n" +#~ "#i2c_bus:\n" +#~ "# If the micro-controller supports multiple I2C busses then one may\n" +#~ "# specify the micro-controller bus name here. The default depends on\n" +#~ "# the type of micro-controller.\n" +#~ "#i2c_speed:\n" +#~ "# The I2C speed (in Hz) to use when communicating with the device.\n" +#~ "# The Klipper implementation on most micro-controllers is hard-coded\n" +#~ "# to 100000 and changing this value has no effect. The default is\n" +#~ "# 100000.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics: deltesian\n" +#~ "max_z_velocity:\n" +#~ "# For deltesian printers, this limits the maximum velocity (in mm/s) of\n" +#~ "# moves with z axis movement. This setting can be used to reduce the\n" +#~ "# maximum speed of up/down moves (which require a higher step rate\n" +#~ "# than other moves on a deltesian printer). The default is to use\n" +#~ "# max_velocity for max_z_velocity.\n" +#~ "#max_z_accel:\n" +#~ "# This sets the maximum acceleration (in mm/s^2) of movement along\n" +#~ "# the z axis. Setting this may be useful if the printer can reach higher\n" +#~ "# acceleration on XY moves than Z moves (eg, when using input shaper).\n" +#~ "# The default is to use max_accel for max_z_accel.\n" +#~ "#minimum_z_position: 0\n" +#~ "# The minimum Z position that the user may command the head to move\n" +#~ "# to. The default is 0.\n" +#~ "#min_angle: 5\n" +#~ "# This represents the minimum angle (in degrees) relative to horizontal\n" +#~ "# that the deltesian arms are allowed to achieve. This parameter is\n" +#~ "# intended to restrict the arms from becomming completely horizontal,\n" +#~ "# which would risk accidental inversion of the XZ axis. The default is 5.\n" +#~ "#print_width:\n" +#~ "# The distance (in mm) of valid toolhead X coordinates. One may use\n" +#~ "# this setting to customize the range checking of toolhead moves. If\n" +#~ "# a large value is specified here then it may be possible to command\n" +#~ "# the toolhead into a collision with a tower. This setting usually\n" +#~ "# corresponds to bed width (in mm).\n" +#~ "#slow_ratio: 3\n" +#~ "# The ratio used to limit velocity and acceleration on moves near the\n" +#~ "# extremes of the X axis. If vertical distance divided by horizontal\n" +#~ "# distance exceeds the value of slow_ratio, then velocity and\n" +#~ "# acceleration are limited to half their nominal values. If vertical\n" +#~ "# distance divided by horizontal distance exceeds twice the value of\n" +#~ "# the slow_ratio, then velocity and acceleration are limited to one\n" +#~ "# quarter of their nominal values. The default is 3.\n" +#~ "\n" +#~ "# The stepper_left section is used to describe the stepper controlling\n" +#~ "# the left tower. This section also controls the homing parameters\n" +#~ "# (homing_speed, homing_retract_dist) for all towers.\n" +#~ "[stepper_left]\n" +#~ "position_endstop:\n" +#~ "# Distance (in mm) between the nozzle and the bed when the nozzle is\n" +#~ "# in the center of the build area and the endstops are triggered. This\n" +#~ "# parameter must be provided for stepper_left; for stepper_right this\n" +#~ "# parameter defaults to the value specified for stepper_left.\n" +#~ "arm_length:\n" +#~ "# Length (in mm) of the diagonal rod that connects the tower carriage to\n" +#~ "# the print head. This parameter must be provided for stepper_left; for\n" +#~ "# stepper_right, this parameter defaults to the value specified for\n" +#~ "# stepper_left.\n" +#~ "arm_x_length:\n" +#~ "# Horizontal distance between the print head and the tower when the\n" +#~ "# printers is homed. This parameter must be provided for stepper_left;\n" +#~ "# for stepper_right, this parameter defaults to the value specified for\n" +#~ "# stepper_left.\n" +#~ "\n" +#~ "# The stepper_right section is used to desribe the stepper controlling the\n" +#~ "# right tower.\n" +#~ "[stepper_right]\n" +#~ "\n" +#~ "# The stepper_y section is used to describe the stepper controlling\n" +#~ "# the Y axis in a deltesian robot.\n" +#~ "[stepper_y]\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2130 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC2130 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). This interpolation does\n" +#~ "# introduce a small systemic positional deviation - see\n" +#~ "# TMC_Drivers.md for details. The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. Setting a hold_current is not\n" +#~ "# recommended (see TMC_Drivers.md for details). The default is to\n" +#~ "# not reduce the current.\n" +#~ "#sense_resistor: 0.110\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.110 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 0\n" +#~ "#driver_TBL: 1\n" +#~ "#driver_TOFF: 4\n" +#~ "#driver_HEND: 7\n" +#~ "#driver_HSTRT: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 4\n" +#~ "#driver_PWM_AMPL: 128\n" +#~ "#driver_SGT: 0\n" +#~ "# Set the given register during the configuration of the TMC2130\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC2130 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc2130_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc5160 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC5160 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. Setting a hold_current is not\n" +#~ "# recommended (see TMC_Drivers.md for details). The default is to\n" +#~ "# not reduce the current.\n" +#~ "#sense_resistor: 0.075\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.075 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 6\n" +#~ "#driver_TPOWERDOWN: 10\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 2\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_FD3: 0\n" +#~ "#driver_TPFD: 4\n" +#~ "#driver_CHM: 0\n" +#~ "#driver_VHIGHFS: 0\n" +#~ "#driver_VHIGHCHM: 0\n" +#~ "#driver_DISS2G: 0\n" +#~ "#driver_DISS2VS: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_FREQ: 0\n" +#~ "#driver_FREEWHEEL: 0\n" +#~ "#driver_PWM_GRAD: 0\n" +#~ "#driver_PWM_OFS: 30\n" +#~ "#driver_PWM_REG: 4\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_SGT: 0\n" +#~ "#driver_SEMIN: 0\n" +#~ "#driver_SEUP: 0\n" +#~ "#driver_SEMAX: 0\n" +#~ "#driver_SEDN: 0\n" +#~ "#driver_SEIMIN: 0\n" +#~ "#driver_SFILT: 0\n" +#~ "# Set the given register during the configuration of the TMC5160\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC5160 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc5160_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Support for MPU-9250, MPU-9255, MPU-9255, MPU-6050, and MPU-6500 " +#~ "accelerometers (one may define any number of sections with an \"mpu9250\" " +#~ "prefix)." +#~ msgstr "" + +#~ msgid "" +#~ "Support for mpu9250 and mpu6050 accelerometers (one may define any number of" +#~ " sections with an \"mpu9250\" prefix)." +#~ msgstr "" + +#~ msgid "" +#~ "[mpu9250 my_accelerometer]\n" +#~ "#i2c_address:\n" +#~ "# Default is 104 (0x68).\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed: 400000\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters. The default \"i2c_speed\" is 400000.\n" +#~ "#axes_map: x, y, z\n" +#~ "# See the \"adxl345\" section for information on this parameter.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[fan]\n" +#~ "pin:\n" +#~ "# Output pin controlling the fan. This parameter must be provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# pin may be set to. The value 1.0 allows the pin to be set fully\n" +#~ "# enabled for extended periods, while a value of 0.5 would allow the\n" +#~ "# pin to be enabled for no more than half the time. This setting may\n" +#~ "# be used to limit the total power output (over extended periods) to\n" +#~ "# the fan. If this value is less than 1.0 then fan speed requests\n" +#~ "# will be scaled between zero and max_power (for example, if\n" +#~ "# max_power is .9 and a fan speed of 80% is requested then the fan\n" +#~ "# power will be set to 72%). The default is 1.0.\n" +#~ "#shutdown_speed: 0\n" +#~ "# The desired fan speed (expressed as a value from 0.0 to 1.0) if\n" +#~ "# the micro-controller software enters an error state. The default\n" +#~ "# is 0.\n" +#~ "#cycle_time: 0.010\n" +#~ "# The amount of time (in seconds) for each PWM power cycle to the\n" +#~ "# fan. It is recommended this be 10 milliseconds or greater when\n" +#~ "# using software based PWM. The default is 0.010 seconds.\n" +#~ "#hardware_pwm: False\n" +#~ "# Enable this to use hardware PWM instead of software PWM. Most fans\n" +#~ "# do not work well with hardware PWM, so it is not recommended to\n" +#~ "# enable this unless there is an electrical requirement to switch at\n" +#~ "# very high speeds. When using hardware PWM the actual cycle time is\n" +#~ "# constrained by the implementation and may be significantly\n" +#~ "# different than the requested cycle_time. The default is False.\n" +#~ "#kick_start_time: 0.100\n" +#~ "# Time (in seconds) to run the fan at full speed when either first\n" +#~ "# enabling or increasing it by more than 50% (helps get the fan\n" +#~ "# spinning). The default is 0.100 seconds.\n" +#~ "#off_below: 0.0\n" +#~ "# The minimum input speed which will power the fan (expressed as a\n" +#~ "# value from 0.0 to 1.0). When a speed lower than off_below is\n" +#~ "# requested the fan will instead be turned off. This setting may be\n" +#~ "# used to prevent fan stalls and to ensure kick starts are\n" +#~ "# effective. The default is 0.0.\n" +#~ "#\n" +#~ "# This setting should be recalibrated whenever max_power is adjusted.\n" +#~ "# To calibrate this setting, start with off_below set to 0.0 and the\n" +#~ "# fan spinning. Gradually lower the fan speed to determine the lowest\n" +#~ "# input speed which reliably drives the fan without stalls. Set\n" +#~ "# off_below to the duty cycle corresponding to this value (for\n" +#~ "# example, 12% -> 0.12) or slightly higher.\n" +#~ "#tachometer_pin:\n" +#~ "# Tachometer input pin for monitoring fan speed. A pullup is generally\n" +#~ "# required. This parameter is optional.\n" +#~ "#tachometer_ppr: 2\n" +#~ "# When tachometer_pin is specified, this is the number of pulses per\n" +#~ "# revolution of the tachometer signal. For a BLDC fan this is\n" +#~ "# normally half the number of poles. The default is 2.\n" +#~ "#tachometer_poll_interval: 0.0015\n" +#~ "# When tachometer_pin is specified, this is the polling period of the\n" +#~ "# tachometer pin, in seconds. The default is 0.0015, which is fast\n" +#~ "# enough for fans below 10000 RPM at 2 PPR. This must be smaller than\n" +#~ "# 30/(tachometer_ppr*rpm), with some margin, where rpm is the\n" +#~ "# maximum speed (in RPM) of the fan.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[heater_fan my_nozzle_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#heater: extruder\n" +#~ "# Name of the config section defining the heater that this fan is\n" +#~ "# associated with. If a comma separated list of heater names is\n" +#~ "# provided here, then the fan will be enabled when any of the given\n" +#~ "# heaters are enabled. The default is \"extruder\".\n" +#~ "#heater_temp: 50.0\n" +#~ "# A temperature (in Celsius) that the heater must drop below before\n" +#~ "# the fan is disabled. The default is 50 Celsius.\n" +#~ "#fan_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when its associated heater is enabled. The default\n" +#~ "# is 1.0\n" +#~ msgstr "" + +#~ msgid "" +#~ "[fan_generic extruder_partfan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[controller_fan my_controller_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#fan_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when a heater or stepper driver is active.\n" +#~ "# The default is 1.0\n" +#~ "#idle_timeout:\n" +#~ "# The amount of time (in seconds) after a stepper driver or heater\n" +#~ "# was active and the fan should be kept running. The default\n" +#~ "# is 30 seconds.\n" +#~ "#idle_speed:\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when a heater or stepper driver was active and\n" +#~ "# before the idle_timeout is reached. The default is fan_speed.\n" +#~ "#heater:\n" +#~ "#stepper:\n" +#~ "# Name of the config section defining the heater/stepper that this fan\n" +#~ "# is associated with. If a comma separated list of heater/stepper names\n" +#~ "# is provided here, then the fan will be enabled when any of the given\n" +#~ "# heaters/steppers are enabled. The default heater is \"extruder\", the\n" +#~ "# default stepper is all of them.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics:\n" +#~ "# The type of printer in use. This option may be one of: cartesian,\n" +#~ "# corexy, corexz, hybrid_corexy, hybrid_corexz, rotary_delta, delta,\n" +#~ "# polar, winch, or none. This\n" +#~ "# parameter must be specified.\n" +#~ "max_velocity:\n" +#~ "# Maximum velocity (in mm/s) of the toolhead (relative to the\n" +#~ "# print). This parameter must be specified.\n" +#~ "max_accel:\n" +#~ "# Maximum acceleration (in mm/s^2) of the toolhead (relative to the\n" +#~ "# print). This parameter must be specified.\n" +#~ "#max_accel_to_decel:\n" +#~ "# A pseudo acceleration (in mm/s^2) controlling how fast the\n" +#~ "# toolhead may go from acceleration to deceleration. It is used to\n" +#~ "# reduce the top speed of short zig-zag moves (and thus reduce\n" +#~ "# printer vibration from these moves). The default is half of\n" +#~ "# max_accel.\n" +#~ "#square_corner_velocity: 5.0\n" +#~ "# The maximum velocity (in mm/s) that the toolhead may travel a 90\n" +#~ "# degree corner at. A non-zero value can reduce changes in extruder\n" +#~ "# flow rates by enabling instantaneous velocity changes of the\n" +#~ "# toolhead during cornering. This value configures the internal\n" +#~ "# centripetal velocity cornering algorithm; corners with angles\n" +#~ "# larger than 90 degrees will have a higher cornering velocity while\n" +#~ "# corners with angles less than 90 degrees will have a lower\n" +#~ "# cornering velocity. If this is set to zero then the toolhead will\n" +#~ "# decelerate to zero at each corner. The default is 5mm/s.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[temperature_fan my_temp_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#sensor_type:\n" +#~ "#sensor_pin:\n" +#~ "#control:\n" +#~ "#max_delta:\n" +#~ "#min_temp:\n" +#~ "#max_temp:\n" +#~ "# See the \"extruder\" section for a description of the above parameters.\n" +#~ "#pid_Kp:\n" +#~ "#pid_Ki:\n" +#~ "#pid_Kd:\n" +#~ "# The proportional (pid_Kp), integral (pid_Ki), and derivative\n" +#~ "# (pid_Kd) settings for the PID feedback control system. Klipper\n" +#~ "# evaluates the PID settings with the following general formula:\n" +#~ "# fan_pwm = max_power - (Kp*e + Ki*integral(e) - Kd*derivative(e)) / 255\n" +#~ "# Where \"e\" is \"target_temperature - measured_temperature\" and\n" +#~ "# \"fan_pwm\" is the requested fan rate with 0.0 being full off and\n" +#~ "# 1.0 being full on. The pid_Kp, pid_Ki, and pid_Kd parameters must\n" +#~ "# be provided when the PID control algorithm is enabled.\n" +#~ "#pid_deriv_time: 2.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed when using the PID control algorithm. This may reduce\n" +#~ "# the impact of measurement noise. The default is 2 seconds.\n" +#~ "#target_temp: 40.0\n" +#~ "# A temperature (in Celsius) that will be the target temperature.\n" +#~ "# The default is 40 degrees.\n" +#~ "#max_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when the sensor temperature exceeds the set value.\n" +#~ "# The default is 1.0.\n" +#~ "#min_speed: 0.3\n" +#~ "# The minimum fan speed (expressed as a value from 0.0 to 1.0) that\n" +#~ "# the fan will be set to for PID temperature fans.\n" +#~ "# The default is 0.3.\n" +#~ "#gcode_id:\n" +#~ "# If set, the temperature will be reported in M105 queries using the\n" +#~ "# given id. The default is to not report the temperature via M105.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Klipper includes definitions for many types of temperature sensors. These " +#~ "sensors may be used in any config section that requires a temperature sensor" +#~ " (such as an `[extruder]` or `[heated_bed]` section)." +#~ msgstr "" + +#~ msgid "" +#~ "[virtual_sdcard]\n" +#~ "path:\n" +#~ "# The path of the local directory on the host machine to look for\n" +#~ "# g-code files. This is a read-only directory (sdcard file writes\n" +#~ "# are not supported). One may point this to OctoPrint's upload\n" +#~ "# directory (generally ~/.octoprint/uploads/ ). This parameter must\n" +#~ "# be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "#i2c_address:\n" +#~ "# The i2c address of the device. This must specified as a decimal\n" +#~ "# number (not in hex). The default depends on the type of device.\n" +#~ "#i2c_mcu:\n" +#~ "# The name of the micro-controller that the chip is connected to.\n" +#~ "# The default is \"mcu\".\n" +#~ "#i2c_bus:\n" +#~ "# If the micro-controller supports multiple I2C busses then one may\n" +#~ "# specify the micro-controller bus name here. The default depends on\n" +#~ "# the type of micro-controller.\n" +#~ "#i2c_speed:\n" +#~ "# The I2C speed (in Hz) to use when communicating with the device.\n" +#~ "# On some micro-controllers changing this value has no effect. The\n" +#~ "# default is 100000.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[safe_z_home]\n" +#~ "home_xy_position:\n" +#~ "# A X, Y coordinate (e.g. 100, 100) where the Z homing should be\n" +#~ "# performed. This parameter must be provided.\n" +#~ "#speed: 50.0\n" +#~ "# Speed at which the toolhead is moved to the safe Z home\n" +#~ "# coordinate. The default is 50 mm/s\n" +#~ "#z_hop:\n" +#~ "# Distance (in mm) to lift the Z axis prior to homing. This is\n" +#~ "# applied to any homing command, even if it doesn't home the Z axis.\n" +#~ "# If the Z axis is already homed and the current Z position is less\n" +#~ "# than z_hop, then this will lift the head to a height of z_hop. If\n" +#~ "# the Z axis is not already homed the head is lifted by z_hop.\n" +#~ "# The default is to not implement Z hop.\n" +#~ "#z_hop_speed: 20.0\n" +#~ "# Speed (in mm/s) at which the Z axis is lifted prior to homing. The\n" +#~ "# default is 20mm/s.\n" +#~ "#move_to_previous: False\n" +#~ "# When set to True, the X and Y axes are reset to their previous\n" +#~ "# positions after Z axis homing. The default is False.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[temperature_fan my_temp_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#sensor_type:\n" +#~ "#sensor_pin:\n" +#~ "#control:\n" +#~ "#pid_Kp:\n" +#~ "#pid_Ki:\n" +#~ "#pid_Kd:\n" +#~ "#pid_deriv_time:\n" +#~ "#max_delta:\n" +#~ "#min_temp:\n" +#~ "#max_temp:\n" +#~ "# See the \"extruder\" section for a description of the above parameters.\n" +#~ "#target_temp: 40.0\n" +#~ "# A temperature (in Celsius) that will be the target temperature.\n" +#~ "# The default is 40 degrees.\n" +#~ "#max_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when the sensor temperature exceeds the set value.\n" +#~ "# The default is 1.0.\n" +#~ "#min_speed: 0.3\n" +#~ "# The minimum fan speed (expressed as a value from 0.0 to 1.0) that\n" +#~ "# the fan will be set to for PID temperature fans.\n" +#~ "# The default is 0.3.\n" +#~ "#gcode_id:\n" +#~ "# If set, the temperature will be reported in M105 queries using the\n" +#~ "# given id. The default is to not report the temperature via M105.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[screws_tilt_adjust]\n" +#~ "#screw1:\n" +#~ "# The (X, Y) coordinate of the first bed leveling screw. This is a\n" +#~ "# position to command the nozzle to that is directly above the bed\n" +#~ "# screw (or as close as possible while still being above the bed).\n" +#~ "# This is the base screw used in calculations. This parameter must\n" +#~ "# be provided.\n" +#~ "#screw1_name:\n" +#~ "# An arbitrary name for the given screw. This name is displayed when\n" +#~ "# the helper script runs. The default is to use a name based upon\n" +#~ "# the screw XY location.\n" +#~ "#screw2:\n" +#~ "#screw2_name:\n" +#~ "#...\n" +#~ "# Additional bed leveling screws. At least two screws must be\n" +#~ "# defined.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#screw_thread: CW-M3\n" +#~ "# The type of screw used for bed level, M3, M4 or M5 and the\n" +#~ "# direction of the knob used to level the bed, clockwise decrease\n" +#~ "# counter-clockwise decrease.\n" +#~ "# Accepted values: CW-M3, CCW-M3, CW-M4, CCW-M4, CW-M5, CCW-M5.\n" +#~ "# Default value is CW-M3, most printers use an M3 screw and\n" +#~ "# turning the knob clockwise decrease distance.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[resonance_tester]\n" +#~ "#probe_points:\n" +#~ "# A list of X, Y, Z coordinates of points (one point per line) to test\n" +#~ "# resonances at. At least one point is required. Make sure that all\n" +#~ "# points with some safety margin in XY plane (~a few centimeters)\n" +#~ "# are reachable by the toolhead.\n" +#~ "#accel_chip:\n" +#~ "# A name of the accelerometer chip to use for measurements. If\n" +#~ "# adxl345 chip was defined without an explicit name, this parameter\n" +#~ "# can simply reference it as \"accel_chip: adxl345\", otherwise an\n" +#~ "# explicit name must be supplied as well, e.g. \"accel_chip: adxl345\n" +#~ "# my_chip_name\". Either this, or the next two parameters must be\n" +#~ "# set.\n" +#~ "#accel_chip_x:\n" +#~ "#accel_chip_y:\n" +#~ "# Names of the accelerometer chips to use for measurements for each\n" +#~ "# of the axis. Can be useful, for instance, on bed slinger printer,\n" +#~ "# if two separate accelerometers are mounted on the bed (for Y axis)\n" +#~ "# and on the toolhead (for X axis). These parameters have the same\n" +#~ "# format as 'accel_chip' parameter. Only 'accel_chip' or these two\n" +#~ "# parameters must be provided.\n" +#~ "#max_smoothing:\n" +#~ "# Maximum input shaper smoothing to allow for each axis during shaper\n" +#~ "# auto-calibration (with 'SHAPER_CALIBRATE' command). By default no\n" +#~ "# maximum smoothing is specified. Refer to Measuring_Resonances guide\n" +#~ "# for more details on using this feature.\n" +#~ "#min_freq: 5\n" +#~ "# Minimum frequency to test for resonances. The default is 5 Hz.\n" +#~ "#max_freq: 120\n" +#~ "# Maximum frequency to test for resonances. The default is 120 Hz.\n" +#~ "#accel_per_hz: 75\n" +#~ "# This parameter is used to determine which acceleration to use to\n" +#~ "# test a specific frequency: accel = accel_per_hz * freq. Higher the\n" +#~ "# value, the higher is the energy of the oscillations. Can be set to\n" +#~ "# a lower than the default value if the resonances get too strong on\n" +#~ "# the printer. However, lower values make measurements of\n" +#~ "# high-frequency resonances less precise. The default value is 75\n" +#~ "# (mm/sec).\n" +#~ "#hz_per_sec: 1\n" +#~ "# Determines the speed of the test. When testing all frequencies in\n" +#~ "# range [min_freq, max_freq], each second the frequency increases by\n" +#~ "# hz_per_sec. Small values make the test slow, and the large values\n" +#~ "# will decrease the precision of the test. The default value is 1.0\n" +#~ "# (Hz/sec == sec^-2).\n" +#~ msgstr "" + +#~ msgid "" +#~ "Note that the [linux mcu](RPi_microcontroller.md) implementation does not " +#~ "currently support directly connected neopixels." +#~ msgstr "" + +#~ msgid "" +#~ "[neopixel my_neopixel]\n" +#~ "pin:\n" +#~ "# The pin connected to the neopixel. This parameter must be\n" +#~ "# provided.\n" +#~ "#chain_count:\n" +#~ "# The number of Neopixel chips that are \"daisy chained\" to the\n" +#~ "# provided pin. The default is 1 (which indicates only a single\n" +#~ "# Neopixel is connected to the pin).\n" +#~ "#color_order: GRB\n" +#~ "# Set the pixel order required by the LED hardware (using a string\n" +#~ "# containing the letters R, G, B, W with W optional). The default is\n" +#~ "# GRB.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# See the \"led\" section for information on these parameters.\n" +#~ msgstr "" + +#~ msgid "Additional servos, LEDs, buttons, and other pins" +#~ msgstr "" + +#~ msgid "[PCA9533]" +#~ msgstr "" + +#~ msgid "" +#~ "Display data text \"macros\" (one may define any number of sections with a " +#~ "display_template prefix). This feature allows one to reduce repetitive " +#~ "definitions in display_data sections. One may use the builtin render() " +#~ "function in display_data sections to evaluate a template. For example, if " +#~ "one were to define `[display_template my_template]` then one could use `{ " +#~ "render('my_template') }` in a display_data section." +#~ msgstr "" + +#~ msgid "" +#~ "[dotstar my_dotstar]\n" +#~ "data_pin:\n" +#~ "# The pin connected to the data line of the dotstar. This parameter\n" +#~ "# must be provided.\n" +#~ "clock_pin:\n" +#~ "# The pin connected to the clock line of the dotstar. This parameter\n" +#~ "# must be provided.\n" +#~ "#chain_count:\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "# See the \"neopixel\" section for information on these parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[pca9533 my_pca9533]\n" +#~ "#i2c_address: 98\n" +#~ "# The i2c address that the chip is using on the i2c bus. Use 98 for\n" +#~ "# the PCA9533/1, 99 for the PCA9533/2. The default is 98.\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#initial_RED: 0\n" +#~ "#initial_GREEN: 0\n" +#~ "#initial_BLUE: 0\n" +#~ "#initial_WHITE: 0\n" +#~ "# The PCA9533 only supports 1 or 0. The default is 0. On the\n" +#~ "# mightyboard, the white led is not populated.\n" +#~ "# Use GCODE to modify led values after startup.\n" +#~ "# set_led led=my_pca9533 red=1 green=1 blue=1\n" +#~ msgstr "" + +#~ msgid "" +#~ "[display_template my_template_name]\n" +#~ "#param_:\n" +#~ "# One may specify any number of options with a \"param_\" prefix. The\n" +#~ "# given name will be assigned the given value (parsed as a Python\n" +#~ "# literal) and will be available during macro expansion. If the\n" +#~ "# parameter is passed in the call to render() then that value will\n" +#~ "# be used during macro expansion. For example, a config with\n" +#~ "# \"param_speed = 75\" might have a caller with\n" +#~ "# \"render('my_template_name', param_speed=80)\". Parameter names may\n" +#~ "# not use upper case characters.\n" +#~ "#text:\n" +#~ "# The text to return when the render() function is called for this\n" +#~ "# template. This field is evaluated using command templates (see\n" +#~ "# docs/Command_Templates.md). This parameter must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Neopixel (aka WS2812) LED support (one may define any number of sections " +#~ "with a \"neopixel\" prefix). One may set the LED color via \"SET_LED " +#~ "LED=my_neopixel RED=0.1 GREEN=0.1 BLUE=0.1\" type extended [g-code " +#~ "commands](G-Codes.md#neopixel)." +#~ msgstr "" + +#~ msgid "" +#~ "Dotstar (aka APA102) LED support (one may define any number of sections with" +#~ " a \"dotstar\" prefix). One may set the LED color via \"SET_LED " +#~ "LED=my_dotstar RED=0.1 GREEN=0.1 BLUE=0.1\" type extended [g-code " +#~ "commands](G-Codes.md#neopixel)." +#~ msgstr "" + +#~ msgid "" +#~ "[extruder]\n" +#~ "step_pin:\n" +#~ "dir_pin:\n" +#~ "enable_pin:\n" +#~ "microsteps:\n" +#~ "rotation_distance:\n" +#~ "#full_steps_per_rotation:\n" +#~ "#gear_ratio:\n" +#~ "# See the \"stepper\" section for a description of the above\n" +#~ "# parameters. If none of the above parameters are specified then no\n" +#~ "# stepper will be associated with the nozzle hotend (though a\n" +#~ "# SYNC_EXTRUDER_MOTION command may associate one at run-time).\n" +#~ "nozzle_diameter:\n" +#~ "# Diameter of the nozzle orifice (in mm). This parameter must be\n" +#~ "# provided.\n" +#~ "filament_diameter:\n" +#~ "# The nominal diameter of the raw filament (in mm) as it enters the\n" +#~ "# extruder. This parameter must be provided.\n" +#~ "#max_extrude_cross_section:\n" +#~ "# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +#~ "# extrusion width multiplied by layer height). This setting prevents\n" +#~ "# excessive amounts of extrusion during relatively small XY moves.\n" +#~ "# If a move requests an extrusion rate that would exceed this value\n" +#~ "# it will cause an error to be returned. The default is: 4.0 *\n" +#~ "# nozzle_diameter^2\n" +#~ "#instantaneous_corner_velocity: 1.000\n" +#~ "# The maximum instantaneous velocity change (in mm/s) of the\n" +#~ "# extruder during the junction of two moves. The default is 1mm/s.\n" +#~ "#max_extrude_only_distance: 50.0\n" +#~ "# Maximum length (in mm of raw filament) that a retraction or\n" +#~ "# extrude-only move may have. If a retraction or extrude-only move\n" +#~ "# requests a distance greater than this value it will cause an error\n" +#~ "# to be returned. The default is 50mm.\n" +#~ "#max_extrude_only_velocity:\n" +#~ "#max_extrude_only_accel:\n" +#~ "# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +#~ "# extruder motor for retractions and extrude-only moves. These\n" +#~ "# settings do not have any impact on normal printing moves. If not\n" +#~ "# specified then they are calculated to match the limit an XY\n" +#~ "# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +#~ "# have.\n" +#~ "#pressure_advance: 0.0\n" +#~ "# The amount of raw filament to push into the extruder during\n" +#~ "# extruder acceleration. An equal amount of filament is retracted\n" +#~ "# during deceleration. It is measured in millimeters per\n" +#~ "# millimeter/second. The default is 0, which disables pressure\n" +#~ "# advance.\n" +#~ "#pressure_advance_smooth_time: 0.040\n" +#~ "# A time range (in seconds) to use when calculating the average\n" +#~ "# extruder velocity for pressure advance. A larger value results in\n" +#~ "# smoother extruder movements. This parameter may not exceed 200ms.\n" +#~ "# This setting only applies if pressure_advance is non-zero. The\n" +#~ "# default is 0.040 (40 milliseconds).\n" +#~ "#\n" +#~ "# The remaining variables describe the extruder heater.\n" +#~ "heater_pin:\n" +#~ "# PWM output pin controlling the heater. This parameter must be\n" +#~ "# provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +#~ "# fully enabled for extended periods, while a value of 0.5 would\n" +#~ "# allow the pin to be enabled for no more than half the time. This\n" +#~ "# setting may be used to limit the total power output (over extended\n" +#~ "# periods) to the heater. The default is 1.0.\n" +#~ "sensor_type:\n" +#~ "# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +#~ "# \"ATC Semitec 104GT-2\", \"ATC Semitec 104NT-4-R025H42G\", \"Generic\n" +#~ "# 3950\",\"Honeywell 100K 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\",\n" +#~ "# \"SliceEngineering 450\", and \"TDK NTCG104LH104JT1\". See the\n" +#~ "# \"Temperature sensors\" section for other sensors. This parameter\n" +#~ "# must be provided.\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the sensor. This parameter must be\n" +#~ "# provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# This parameter is only valid when the sensor is a thermistor. The\n" +#~ "# default is 4700 ohms.\n" +#~ "#smooth_time: 1.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed to reduce the impact of measurement noise. The default\n" +#~ "# is 1 seconds.\n" +#~ "control:\n" +#~ "# Control algorithm (either pid or watermark). This parameter must\n" +#~ "# be provided.\n" +#~ "pid_Kp:\n" +#~ "# Kp is the \"proportional\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "pid_Ki:\n" +#~ "# Ki is the \"integral\" constant for the pid. This parameter must be\n" +#~ "# provided for PID heaters.\n" +#~ "pid_Kd:\n" +#~ "# Kd is the \"derivative\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "#max_delta: 2.0\n" +#~ "# On 'watermark' controlled heaters this is the number of degrees in\n" +#~ "# Celsius above the target temperature before disabling the heater\n" +#~ "# as well as the number of degrees below the target before\n" +#~ "# re-enabling the heater. The default is 2 degrees Celsius.\n" +#~ "#pwm_cycle_time: 0.100\n" +#~ "# Time in seconds for each software PWM cycle of the heater. It is\n" +#~ "# not recommended to set this unless there is an electrical\n" +#~ "# requirement to switch the heater faster than 10 times a second.\n" +#~ "# The default is 0.100 seconds.\n" +#~ "#min_extrude_temp: 170\n" +#~ "# The minimum temperature (in Celsius) at which extruder move\n" +#~ "# commands may be issued. The default is 170 Celsius.\n" +#~ "min_temp:\n" +#~ "max_temp:\n" +#~ "# The maximum range of valid temperatures (in Celsius) that the\n" +#~ "# heater must remain within. This controls a safety feature\n" +#~ "# implemented in the micro-controller code - should the measured\n" +#~ "# temperature ever fall outside this range then the micro-controller\n" +#~ "# will go into a shutdown state. This check can help detect some\n" +#~ "# heater and sensor hardware failures. Set this range just wide\n" +#~ "# enough so that reasonable temperatures do not result in an error.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[neopixel my_neopixel]\n" +#~ "pin:\n" +#~ "# The pin connected to the neopixel. This parameter must be\n" +#~ "# provided.\n" +#~ "#chain_count:\n" +#~ "# The number of Neopixel chips that are \"daisy chained\" to the\n" +#~ "# provided pin. The default is 1 (which indicates only a single\n" +#~ "# Neopixel is connected to the pin).\n" +#~ "#color_order: GRB\n" +#~ "# Set the pixel order required by the LED hardware. Options are GRB,\n" +#~ "# RGB, BRG, BGR, GRBW, or RGBW. The default is GRB.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# Sets the initial LED color of the Neopixel. Each value should be\n" +#~ "# between 0.0 and 1.0. The WHITE option is only available on RGBW\n" +#~ "# LEDs. The default for each color is 0.\n" +#~ msgstr "" + +#~ msgid "[PCA9632]" +#~ msgstr "" + +#~ msgid "" +#~ "[pca9632 my_pca9632]\n" +#~ "scl_pin:\n" +#~ "# The SCL \"clock\" pin. This parameter must be provided.\n" +#~ "sda_pin:\n" +#~ "# The SDA \"data\" pin. This parameter must be provided.\n" +#~ "#initial_RED: 0\n" +#~ "#initial_GREEN: 0\n" +#~ "#initial_BLUE: 0\n" +#~ "#initial_WHITE: 0\n" +#~ "# PCA9632 supports individual LED PWM.\n" +#~ "# Values range from 0.0 to 1.0. The default is 0.0.\n" +#~ "# On the FlashForge Dreamer, the white led is not populated.\n" +#~ "# Use GCODE to modify led values after startup.\n" +#~ "# set_led led=my_pca9632 red=1.0 green=1.0 blue=1.0 white=0.0\n" +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics: polar\n" +#~ "\n" +#~ "# The stepper_bed section is used to describe the stepper controlling\n" +#~ "# the bed.\n" +#~ "[stepper_bed]\n" +#~ "gear_ratio:\n" +#~ "# A gear_ratio must be specified and rotation_distance may not be\n" +#~ "# specified. For example, if the bed has an 80 toothed pulley driven\n" +#~ "# by a stepper with a 16 toothed pulley then one would specify a\n" +#~ "# gear ratio of \"80:16\". This parameter must be provided.\n" +#~ "max_z_velocity:\n" +#~ "# This sets the maximum velocity (in mm/s) of movement along the z\n" +#~ "# axis. This setting can be used to restrict the maximum speed of\n" +#~ "# the z stepper motor. The default is to use max_velocity for\n" +#~ "# max_z_velocity.\n" +#~ "max_z_accel:\n" +#~ "# This sets the maximum acceleration (in mm/s^2) of movement along\n" +#~ "# the z axis. It limits the acceleration of the z stepper motor. The\n" +#~ "# default is to use max_accel for max_z_accel.\n" +#~ "\n" +#~ "# The stepper_arm section is used to describe the stepper controlling\n" +#~ "# the carriage on the arm.\n" +#~ "[stepper_arm]\n" +#~ "\n" +#~ "# The stepper_z section is used to describe the stepper controlling\n" +#~ "# the Z axis.\n" +#~ "[stepper_z]\n" +#~ msgstr "" + +#~ msgid "" +#~ "[bltouch]\n" +#~ "sensor_pin:\n" +#~ "# Pin connected to the BLTouch sensor pin. Most BLTouch devices\n" +#~ "# require a pullup on the sensor pin (prefix the pin name with \"^\").\n" +#~ "# This parameter must be provided.\n" +#~ "control_pin:\n" +#~ "# Pin connected to the BLTouch control pin. This parameter must be\n" +#~ "# provided.\n" +#~ "#pin_move_time: 0.680\n" +#~ "# The amount of time (in seconds) to wait for the BLTouch pin to\n" +#~ "# move up or down. The default is 0.680 seconds.\n" +#~ "#stow_on_each_sample: True\n" +#~ "# This determines if Klipper should command the pin to move up\n" +#~ "# between each probe attempt when performing a multiple probe\n" +#~ "# sequence. Read the directions in docs/BLTouch.md before setting\n" +#~ "# this to False. The default is True.\n" +#~ "#probe_with_touch_mode: False\n" +#~ "# If this is set to True then Klipper will probe with the device in\n" +#~ "# \"touch_mode\". The default is False (probing in \"pin_down\" mode).\n" +#~ "#pin_up_reports_not_triggered: True\n" +#~ "# Set if the BLTouch consistently reports the probe in a \"not\n" +#~ "# triggered\" state after a successful \"pin_up\" command. This should\n" +#~ "# be True for all genuine BLTouch devices. Read the directions in\n" +#~ "# docs/BLTouch.md before setting this to False. The default is True.\n" +#~ "#pin_up_touch_mode_reports_triggered: True\n" +#~ "# Set if the BLTouch consistently reports a \"triggered\" state after\n" +#~ "# the commands \"pin_up\" followed by \"touch_mode\". This should be\n" +#~ "# True for all genuine BLTouch devices. Read the directions in\n" +#~ "# docs/BLTouch.md before setting this to False. The default is True.\n" +#~ "#set_output_mode:\n" +#~ "# Request a specific sensor pin output mode on the BLTouch V3.0 (and\n" +#~ "# later). This setting should not be used on other types of probes.\n" +#~ "# Set to \"5V\" to request a sensor pin output of 5 Volts (only use if\n" +#~ "# the controller board needs 5V mode and is 5V tolerant on its input\n" +#~ "# signal line). Set to \"OD\" to request the sensor pin output use\n" +#~ "# open drain mode. The default is to not request an output mode.\n" +#~ "#x_offset:\n" +#~ "#y_offset:\n" +#~ "#z_offset:\n" +#~ "#speed:\n" +#~ "#samples:\n" +#~ "#sample_retract_dist:\n" +#~ "#samples_result:\n" +#~ "#samples_tolerance:\n" +#~ "#samples_tolerance_retries:\n" +#~ "# See the \"probe\" section for information on these parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[neopixel my_neopixel]\n" +#~ "pin:\n" +#~ "# The pin connected to the neopixel. This parameter must be\n" +#~ "# provided.\n" +#~ "#chain_count:\n" +#~ "# The number of Neopixel chips that are \"daisy chained\" to the\n" +#~ "# provided pin. The default is 1 (which indicates only a single\n" +#~ "# Neopixel is connected to the pin).\n" +#~ "#color_order: GRB\n" +#~ "# Set the pixel order required by the LED hardware. Options are GRB,\n" +#~ "# RGB, BRG, GRBW, or RGBW. The default is GRB.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# Sets the initial LED color of the Neopixel. Each value should be\n" +#~ "# between 0.0 and 1.0. The WHITE option is only available on RGBW\n" +#~ "# LEDs. The default for each color is 0.\n" +#~ msgstr "" + +#~ msgid "" +#~ "The extruder section is used to describe both the stepper controlling the " +#~ "printer extruder and the heater parameters for the nozzle. See the [pressure" +#~ " advance guide](Pressure_Advance.md) for information on tuning pressure " +#~ "advance." +#~ msgstr "" + +#~ msgid "" +#~ "[extruder]\n" +#~ "step_pin:\n" +#~ "dir_pin:\n" +#~ "enable_pin:\n" +#~ "microsteps:\n" +#~ "rotation_distance:\n" +#~ "#full_steps_per_rotation:\n" +#~ "#gear_ratio:\n" +#~ "# See the \"stepper\" section for a description of the above parameters.\n" +#~ "nozzle_diameter:\n" +#~ "# Diameter of the nozzle orifice (in mm). This parameter must be\n" +#~ "# provided.\n" +#~ "filament_diameter:\n" +#~ "# The nominal diameter of the raw filament (in mm) as it enters the\n" +#~ "# extruder. This parameter must be provided.\n" +#~ "#max_extrude_cross_section:\n" +#~ "# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +#~ "# extrusion width multiplied by layer height). This setting prevents\n" +#~ "# excessive amounts of extrusion during relatively small XY moves.\n" +#~ "# If a move requests an extrusion rate that would exceed this value\n" +#~ "# it will cause an error to be returned. The default is: 4.0 *\n" +#~ "# nozzle_diameter^2\n" +#~ "#instantaneous_corner_velocity: 1.000\n" +#~ "# The maximum instantaneous velocity change (in mm/s) of the\n" +#~ "# extruder during the junction of two moves. The default is 1mm/s.\n" +#~ "#max_extrude_only_distance: 50.0\n" +#~ "# Maximum length (in mm of raw filament) that a retraction or\n" +#~ "# extrude-only move may have. If a retraction or extrude-only move\n" +#~ "# requests a distance greater than this value it will cause an error\n" +#~ "# to be returned. The default is 50mm.\n" +#~ "#max_extrude_only_velocity:\n" +#~ "#max_extrude_only_accel:\n" +#~ "# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +#~ "# extruder motor for retractions and extrude-only moves. These\n" +#~ "# settings do not have any impact on normal printing moves. If not\n" +#~ "# specified then they are calculated to match the limit an XY\n" +#~ "# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +#~ "# have.\n" +#~ "#pressure_advance: 0.0\n" +#~ "# The amount of raw filament to push into the extruder during\n" +#~ "# extruder acceleration. An equal amount of filament is retracted\n" +#~ "# during deceleration. It is measured in millimeters per\n" +#~ "# millimeter/second. The default is 0, which disables pressure\n" +#~ "# advance.\n" +#~ "#pressure_advance_smooth_time: 0.040\n" +#~ "# A time range (in seconds) to use when calculating the average\n" +#~ "# extruder velocity for pressure advance. A larger value results in\n" +#~ "# smoother extruder movements. This parameter may not exceed 200ms.\n" +#~ "# This setting only applies if pressure_advance is non-zero. The\n" +#~ "# default is 0.040 (40 milliseconds).\n" +#~ "#\n" +#~ "# The remaining variables describe the extruder heater.\n" +#~ "heater_pin:\n" +#~ "# PWM output pin controlling the heater. This parameter must be\n" +#~ "# provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +#~ "# fully enabled for extended periods, while a value of 0.5 would\n" +#~ "# allow the pin to be enabled for no more than half the time. This\n" +#~ "# setting may be used to limit the total power output (over extended\n" +#~ "# periods) to the heater. The default is 1.0.\n" +#~ "sensor_type:\n" +#~ "# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +#~ "# \"ATC Semitec 104GT-2\", \"ATC Semitec 104NT-4-R025H42G\", \"Generic\n" +#~ "# 3950\",\"Honeywell 100K 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\",\n" +#~ "# \"SliceEngineering 450\", and \"TDK NTCG104LH104JT1\". See the\n" +#~ "# \"Temperature sensors\" section for other sensors. This parameter\n" +#~ "# must be provided.\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the sensor. This parameter must be\n" +#~ "# provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# This parameter is only valid when the sensor is a thermistor. The\n" +#~ "# default is 4700 ohms.\n" +#~ "#smooth_time: 1.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed to reduce the impact of measurement noise. The default\n" +#~ "# is 1 seconds.\n" +#~ "control:\n" +#~ "# Control algorithm (either pid or watermark). This parameter must\n" +#~ "# be provided.\n" +#~ "pid_Kp:\n" +#~ "# Kp is the \"proportional\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "pid_Ki:\n" +#~ "# Ki is the \"integral\" constant for the pid. This parameter must be\n" +#~ "# provided for PID heaters.\n" +#~ "pid_Kd:\n" +#~ "# Kd is the \"derivative\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "#max_delta: 2.0\n" +#~ "# On 'watermark' controlled heaters this is the number of degrees in\n" +#~ "# Celsius above the target temperature before disabling the heater\n" +#~ "# as well as the number of degrees below the target before\n" +#~ "# re-enabling the heater. The default is 2 degrees Celsius.\n" +#~ "#pwm_cycle_time: 0.100\n" +#~ "# Time in seconds for each software PWM cycle of the heater. It is\n" +#~ "# not recommended to set this unless there is an electrical\n" +#~ "# requirement to switch the heater faster than 10 times a second.\n" +#~ "# The default is 0.100 seconds.\n" +#~ "#min_extrude_temp: 170\n" +#~ "# The minimum temperature (in Celsius) at which extruder move\n" +#~ "# commands may be issued. The default is 170 Celsius.\n" +#~ "min_temp:\n" +#~ "max_temp:\n" +#~ "# The maximum range of valid temperatures (in Celsius) that the\n" +#~ "# heater must remain within. This controls a safety feature\n" +#~ "# implemented in the micro-controller code - should the measured\n" +#~ "# temperature ever fall outside this range then the micro-controller\n" +#~ "# will go into a shutdown state. This check can help detect some\n" +#~ "# heater and sensor hardware failures. Set this range just wide\n" +#~ "# enough so that reasonable temperatures do not result in an error.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[extruder_stepper my_extra_stepper]\n" +#~ "#extruder: extruder\n" +#~ "# The extruder this stepper is synchronized to. If this is set to an\n" +#~ "# empty string then the stepper will not be synchronized to an\n" +#~ "# extruder. The default is \"extruder\".\n" +#~ "#step_pin:\n" +#~ "#dir_pin:\n" +#~ "#enable_pin:\n" +#~ "#microsteps:\n" +#~ "#rotation_distance:\n" +#~ "# See the \"stepper\" section for the definition of the above\n" +#~ "# parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "See the [bed mesh guide](Bed_Mesh.md) and [command " +#~ "reference](G-Codes.md#mesh-bed-leveling) for additional information." +#~ msgstr "" + +#~ msgid "" +#~ "See the [command reference](G-Codes.md#bed-tilt) for additional information." +#~ msgstr "" + +#~ msgid "" +#~ "See the [leveling guide](Manual_Level.md#adjusting-bed-leveling-screws) and " +#~ "[command reference](G-Codes.md#bed-screws-helper) for additional " +#~ "information." +#~ msgstr "" + +#~ msgid "" +#~ "See the [leveling guide](Manual_Level.md#adjusting-bed-leveling-screws-" +#~ "using-the-bed-probe) and [command reference](G-Codes.md#bed-screws-tilt-" +#~ "adjust-helper) for additional information." +#~ msgstr "" + +#~ msgid "" +#~ "Multiple Z stepper tilt adjustment. This feature enables independent " +#~ "adjustment of multiple z steppers (see the \"stepper_z1\" section) to adjust" +#~ " for tilt. If this section is present then a Z_TILT_ADJUST extended [G-Code " +#~ "command](G-Codes.md#z-tilt) becomes available." +#~ msgstr "" + +#~ msgid "" +#~ "See the [endstop phases guide](Endstop_Phase.md) and [command " +#~ "reference](G-Codes.md#endstop-adjustments-by-stepper-phase) for additional " +#~ "information." +#~ msgstr "" + +#~ msgid "" +#~ "Execute a gcode on a set delay. See the [command template " +#~ "guide](Command_Templates.md#delayed-gcodes) and [command " +#~ "reference](G-Codes.md#delayed-gcode) for more information." +#~ msgstr "" + +#~ msgid "" +#~ "Support saving variables to disk so that they are retained across restarts. " +#~ "See [command templates](Command_Templates.md#save-variables-to-disk) and " +#~ "[G-Code reference](G-Codes.md#save-variables) for further information." +#~ msgstr "" + +#~ msgid "" +#~ "See the [command reference](G-Codes.md#sdcard-loop) for supported commands. " +#~ "See the [sample-macros.cfg](../config/sample-macros.cfg) file for a Marlin " +#~ "compatible M808 G-Code macro." +#~ msgstr "" + +#~ msgid "" +#~ "Support manually moving stepper motors for diagnostic purposes. Note, using " +#~ "this feature may place the printer in an invalid state - see the [command " +#~ "reference](G-Codes.md#force-movement) for important details." +#~ msgstr "" + +#~ msgid "" +#~ "Pause/Resume functionality with support of position capture and restore. See" +#~ " the [command reference](G-Codes.md#pause-resume) for more information." +#~ msgstr "" + +#~ msgid "" +#~ "Firmware filament retraction. This enables G10 (retract) and G11 (unretract)" +#~ " GCODE commands issued by many slicers. The parameters below provide startup" +#~ " defaults, although the values can be adjusted via the SET_RETRACTION " +#~ "[command](G-Codes.md#firmware-retraction)), allowing per-filament settings " +#~ "and runtime tuning." +#~ msgstr "" + +#~ msgid "" +#~ "Enable the \"M118\" and \"RESPOND\" extended [commands](G-Codes.md#send-" +#~ "message-respond-to-host)." +#~ msgstr "" + +#~ msgid "" +#~ "Enables [resonance compensation](Resonance_Compensation.md). Also see the " +#~ "[command reference](G-Codes.md#resonance-compensation)." +#~ msgstr "" + +#~ msgid "" +#~ "Support for ADXL345 accelerometers. This support allows one to query " +#~ "accelerometer measurements from the sensor. This enables an " +#~ "ACCELEROMETER_MEASURE command (see " +#~ "[G-Codes](G-Codes.md#adxl345-accelerometer-commands) for more information). " +#~ "The default chip name is \"default\", but one may specify an explicit name " +#~ "(eg, [adxl345 my_chip_name])." +#~ msgstr "" + +#~ msgid "" +#~ "Support for resonance testing and automatic input shaper calibration. In " +#~ "order to use most of the functionality of this module, additional software " +#~ "dependencies must be installed; refer to [Measuring " +#~ "Resonances](Measuring_Resonances.md) and the [command " +#~ "reference](G-Codes.md#resonance-testing-commands) for more information. See " +#~ "the [Max smoothing](Measuring_Resonances.md#max-smoothing) section of the " +#~ "measuring resonances guide for more information on `max_smoothing` parameter" +#~ " and its use." +#~ msgstr "" + +#~ msgid "" +#~ "See the [command reference](G-Codes.md#extruder-stepper-commands) for more " +#~ "information." +#~ msgstr "" + +#~ msgid "" +#~ "Manual steppers (one may define any number of sections with a " +#~ "\"manual_stepper\" prefix). These are steppers that are controlled by the " +#~ "MANUAL_STEPPER g-code command. For example: \"MANUAL_STEPPER " +#~ "STEPPER=my_stepper MOVE=10 SPEED=5\". See [G-Codes](G-Codes.md#manual-" +#~ "stepper-commands) file for a description of the MANUAL_STEPPER command. The " +#~ "steppers are not connected to the normal printer kinematics." +#~ msgstr "" + +#~ msgid "" +#~ "Generic heaters (one may define any number of sections with a " +#~ "\"heater_generic\" prefix). These heaters behave similarly to standard " +#~ "heaters (extruders, heated beds). Use the SET_HEATER_TEMPERATURE command " +#~ "(see [G-Codes](G-Codes.md) for details) to set the target temperature." +#~ msgstr "" + +#~ msgid "" +#~ "LM75/LM75A two wire (I2C) connected temperature sensors. These sensors have " +#~ "range up to 125 C, so are usable for e.g. chamber temperature monitoring. " +#~ "They can also function as simple fan/heater controllers." +#~ msgstr "" + +#~ msgid "" +#~ "See the [command reference](G-Codes.md#temperature-fan-commands) for " +#~ "additional information." +#~ msgstr "" + +#~ msgid "" +#~ "Manually controlled fan (one may define any number of sections with a " +#~ "\"fan_generic\" prefix). The speed of a manually controlled fan is set with " +#~ "the SET_FAN_SPEED [gcode command](G-Codes.md#manually-controlled-fans-" +#~ "commands)." +#~ msgstr "" + +#~ msgid "" +#~ "Servos (one may define any number of sections with a \"servo\" prefix). The " +#~ "servos may be controlled using the SET_SERVO [g-code " +#~ "command](G-Codes.md#servo-commands). For example: SET_SERVO SERVO=my_servo " +#~ "ANGLE=180" +#~ msgstr "" + +#~ msgid "" +#~ "Neopixel (aka WS2812) LED support (one may define any number of sections " +#~ "with a \"neopixel\" prefix). One may set the LED color via \"SET_LED " +#~ "LED=my_neopixel RED=0.1 GREEN=0.1 BLUE=0.1\" type extended [g-code " +#~ "commands](G-Codes.md#neopixel-and-dotstar-commands)." +#~ msgstr "" + +#~ msgid "" +#~ "Dotstar (aka APA102) LED support (one may define any number of sections with" +#~ " a \"dotstar\" prefix). One may set the LED color via \"SET_LED " +#~ "LED=my_dotstar RED=0.1 GREEN=0.1 BLUE=0.1\" type extended [g-code " +#~ "commands](G-Codes.md#neopixel-and-dotstar-commands)." +#~ msgstr "" + +#~ msgid "" +#~ "Run-time configurable output pins (one may define any number of sections " +#~ "with an \"output_pin\" prefix). Pins configured here will be setup as output" +#~ " pins and one may modify them at run-time using \"SET_PIN PIN=my_pin " +#~ "VALUE=.1\" type extended [g-code commands](G-Codes.md#custom-pin-commands)." +#~ msgstr "" + +#~ msgid "" +#~ "Configuration of Trinamic stepper motor drivers in UART/SPI mode. Additional" +#~ " information is in the [TMC Drivers guide](TMC_Drivers.md) and in the " +#~ "[command reference](G-Codes.md#tmc-stepper-drivers)." +#~ msgstr "" + +#~ msgid "" +#~ "See the [command reference](G-Codes.md#filament-sensor) for more " +#~ "information." +#~ msgstr "" + +#~ msgid "" +#~ "[extruder1]\n" +#~ "#step_pin:\n" +#~ "#dir_pin:\n" +#~ "#...\n" +#~ "# See the \"extruder\" section for available stepper and heater\n" +#~ "# parameters.\n" +#~ "#shared_heater:\n" +#~ "# If this extruder uses the same heater already defined for another\n" +#~ "# extruder then place the name of that extruder here. For example,\n" +#~ "# should extruder3 and extruder4 share a heater then the extruder3\n" +#~ "# config section should define the heater and the extruder4 section\n" +#~ "# should specify \"shared_heater: extruder3\". The default is to not\n" +#~ "# reuse an existing heater.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Printer Skew Correction. It is possible to use software to correct printer " +#~ "skew across 3 planes, xy, xz, yz. This is done by printing a calibration " +#~ "model along a plane and measuring three lengths. Due to the nature of skew " +#~ "correction these lengths are set via gcode. See [Skew " +#~ "Correction](Skew_Correction.md) and [Command Reference](G-Codes.md#skew-" +#~ "correction) for details." +#~ msgstr "" + +#~ msgid "" +#~ "POLAR KINEMATICS ARE A WORK IN PROGRESS. Moves around the `0,0` position are" +#~ " known to not work properly." +#~ msgstr "" + +#~ msgid "" +#~ "CABLE WINCH SUPPORT IS EXPERIMENTAL. Homing is not implemented on cable " +#~ "winch kinematics. In order to home the printer, manually send movement " +#~ "commands until the toolhead is at 0,0,0 and then issue a `G28` command." +#~ msgstr "" + +#~ msgid "Where x is the (0,0) point on the bed" +#~ msgstr "" + +#~ msgid "" +#~ "Safe Z homing. One may use this mechanism to home the Z axis at a specific " +#~ "XY coordinate. This is useful if the toolhead, for example has to move to " +#~ "the center of the bed before Z can be homed." +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics:\n" +#~ "# The type of printer in use. This option may be one of: cartesian,\n" +#~ "# corexy, corexz, hybrid-corexy, hybrid-corexz, rotary_delta, delta,\n" +#~ "# polar, winch, or none. This\n" +#~ "# parameter must be specified.\n" +#~ "max_velocity:\n" +#~ "# Maximum velocity (in mm/s) of the toolhead (relative to the\n" +#~ "# print). This parameter must be specified.\n" +#~ "max_accel:\n" +#~ "# Maximum acceleration (in mm/s^2) of the toolhead (relative to the\n" +#~ "# print). This parameter must be specified.\n" +#~ "#max_accel_to_decel:\n" +#~ "# A pseudo acceleration (in mm/s^2) controlling how fast the\n" +#~ "# toolhead may go from acceleration to deceleration. It is used to\n" +#~ "# reduce the top speed of short zig-zag moves (and thus reduce\n" +#~ "# printer vibration from these moves). The default is half of\n" +#~ "# max_accel.\n" +#~ "#square_corner_velocity: 5.0\n" +#~ "# The maximum velocity (in mm/s) that the toolhead may travel a 90\n" +#~ "# degree corner at. A non-zero value can reduce changes in extruder\n" +#~ "# flow rates by enabling instantaneous velocity changes of the\n" +#~ "# toolhead during cornering. This value configures the internal\n" +#~ "# centripetal velocity cornering algorithm; corners with angles\n" +#~ "# larger than 90 degrees will have a higher cornering velocity while\n" +#~ "# corners with angles less than 90 degrees will have a lower\n" +#~ "# cornering velocity. If this is set to zero then the toolhead will\n" +#~ "# decelerate to zero at each corner. The default is 5mm/s.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics: winch\n" +#~ "\n" +#~ "# The stepper_a section describes the stepper connected to the first\n" +#~ "# cable winch. A minimum of 3 and a maximum of 26 cable winches may be\n" +#~ "# defined (stepper_a to stepper_z) though it is common to define 4.\n" +#~ "[stepper_a]\n" +#~ "rotation_distance:\n" +#~ "# The rotation_distance is the nominal distance (in mm) the toolhead\n" +#~ "# moves towards the cable winch for each full rotation of the\n" +#~ "# stepper motor. This parameter must be provided.\n" +#~ "anchor_x:\n" +#~ "anchor_y:\n" +#~ "anchor_z:\n" +#~ "# The x, y, and z position of the cable winch in cartesian space.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ " rectangular bed, probe_count = 3,3:\n" +#~ " x---x---x (max_point)\n" +#~ " |\n" +#~ " x---x---x\n" +#~ " |\n" +#~ " (min_point) x---x---x\n" +#~ "\n" +#~ " round bed, round_probe_count = 5, bed_radius = r:\n" +#~ " x (0,r) end\n" +#~ " /\n" +#~ " x---x---x\n" +#~ " \\\n" +#~ " (-r,0) x---x---x---x---x (r,0)\n" +#~ " \\\n" +#~ " x---x---x\n" +#~ " /\n" +#~ " x (0,-r) start\n" +#~ msgstr "" + +#~ msgid "" +#~ "[bed_mesh]\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#mesh_radius:\n" +#~ "# Defines the radius of the mesh to probe for round beds. Note that\n" +#~ "# the radius is relative to the coordinate specified by the\n" +#~ "# mesh_origin option. This parameter must be provided for round beds\n" +#~ "# and omitted for rectangular beds.\n" +#~ "#mesh_origin:\n" +#~ "# Defines the center x,y coordinate of the mesh for round beds. This\n" +#~ "# coordinate is relative to the probe's location. It may be useful\n" +#~ "# to adjust the mesh_origin in an effort to maximize the size of the\n" +#~ "# mesh radius. Default is 0,0. This parameter must be omitted for\n" +#~ "# rectangular beds.\n" +#~ "#mesh_min:\n" +#~ "# Defines the minimum x,y coordinate of the mesh for rectangular\n" +#~ "# beds. This coordinate is relative to the probe's location. This\n" +#~ "# will be the first point probed, nearest to the origin. This\n" +#~ "# parameter must be provided for rectangular beds.\n" +#~ "#mesh_max:\n" +#~ "# Defines the maximum x,y coordinate of the mesh for rectangular\n" +#~ "# beds. Adheres to the same principle as mesh_min, however this will\n" +#~ "# be the furthest point probed from the bed's origin. This parameter\n" +#~ "# must be provided for rectangular beds.\n" +#~ "#probe_count: 3,3\n" +#~ "# For rectangular beds, this is a comma separate pair of integer\n" +#~ "# values (X,Y) defining the number of points to probe along each\n" +#~ "# axis. A single value is also valid, in which case that value will\n" +#~ "# be applied to both axes. Default is 3,3.\n" +#~ "#round_probe_count: 5\n" +#~ "# For round beds, this integer value defines the maximum number of\n" +#~ "# points to probe along each axis. This value must be an odd number.\n" +#~ "# Default is 5.\n" +#~ "#fade_start: 1.0\n" +#~ "# The gcode z position in which to start phasing out z-adjustment\n" +#~ "# when fade is enabled. Default is 1.0.\n" +#~ "#fade_end: 0.0\n" +#~ "# The gcode z position in which phasing out completes. When set to a\n" +#~ "# value below fade_start, fade is disabled. It should be noted that\n" +#~ "# fade may add unwanted scaling along the z-axis of a print. If a\n" +#~ "# user wishes to enable fade, a value of 10.0 is recommended.\n" +#~ "# Default is 0.0, which disables fade.\n" +#~ "#fade_target:\n" +#~ "# The z position in which fade should converge. When this value is\n" +#~ "# set to a non-zero value it must be within the range of z-values in\n" +#~ "# the mesh. Users that wish to converge to the z homing position\n" +#~ "# should set this to 0. Default is the average z value of the mesh.\n" +#~ "#split_delta_z: .025\n" +#~ "# The amount of Z difference (in mm) along a move that will trigger\n" +#~ "# a split. Default is .025.\n" +#~ "#move_check_distance: 5.0\n" +#~ "# The distance (in mm) along a move to check for split_delta_z.\n" +#~ "# This is also the minimum length that a move can be split. Default\n" +#~ "# is 5.0.\n" +#~ "#mesh_pps: 2,2\n" +#~ "# A comma separated pair of integers (X,Y) defining the number of\n" +#~ "# points per segment to interpolate in the mesh along each axis. A\n" +#~ "# \"segment\" can be defined as the space between each probed point.\n" +#~ "# The user may enter a single value which will be applied to both\n" +#~ "# axes. Default is 2,2.\n" +#~ "#algorithm: lagrange\n" +#~ "# The interpolation algorithm to use. May be either \"lagrange\" or\n" +#~ "# \"bicubic\". This option will not affect 3x3 grids, which are forced\n" +#~ "# to use lagrange sampling. Default is lagrange.\n" +#~ "#bicubic_tension: .2\n" +#~ "# When using the bicubic algorithm the tension parameter above may\n" +#~ "# be applied to change the amount of slope interpolated. Larger\n" +#~ "# numbers will increase the amount of slope, which results in more\n" +#~ "# curvature in the mesh. Default is .2.\n" +#~ "#relative_reference_index:\n" +#~ "# A point index in the mesh to reference all z values to. Enabling\n" +#~ "# this parameter produces a mesh relative to the probed z position\n" +#~ "# at the provided index.\n" +#~ "#faulty_region_1_min:\n" +#~ "#faulty_region_1_max:\n" +#~ "# Optional points that define a faulty region. See docs/Bed_Mesh.md\n" +#~ "# for details on faulty regions. Up to 99 faulty regions may be added.\n" +#~ "# By default no faulty regions are set.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[bed_tilt]\n" +#~ "#x_adjust: 0\n" +#~ "# The amount to add to each move's Z height for each mm on the X\n" +#~ "# axis. The default is 0.\n" +#~ "#y_adjust: 0\n" +#~ "# The amount to add to each move's Z height for each mm on the Y\n" +#~ "# axis. The default is 0.\n" +#~ "#z_adjust: 0\n" +#~ "# The amount to add to the Z height when the nozzle is nominally at\n" +#~ "# 0,0. The default is 0.\n" +#~ "# The remaining parameters control a BED_TILT_CALIBRATE extended\n" +#~ "# g-code command that may be used to calibrate appropriate x and y\n" +#~ "# adjustment parameters.\n" +#~ "#points:\n" +#~ "# A list of X,Y coordinates (one per line; subsequent lines\n" +#~ "# indented) that should be probed during a BED_TILT_CALIBRATE\n" +#~ "# command. Specify coordinates of the nozzle and be sure the probe\n" +#~ "# is above the bed at the given nozzle coordinates. The default is\n" +#~ "# to not enable the command.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[bed_screws]\n" +#~ "#screw1:\n" +#~ "# The X,Y coordinate of the first bed leveling screw. This is a\n" +#~ "# position to command the nozzle to that is directly above the bed\n" +#~ "# screw (or as close as possible while still being above the bed).\n" +#~ "# This parameter must be provided.\n" +#~ "#screw1_name:\n" +#~ "# An arbitrary name for the given screw. This name is displayed when\n" +#~ "# the helper script runs. The default is to use a name based upon\n" +#~ "# the screw XY location.\n" +#~ "#screw1_fine_adjust:\n" +#~ "# An X,Y coordinate to command the nozzle to so that one can fine\n" +#~ "# tune the bed leveling screw. The default is to not perform fine\n" +#~ "# adjustments on the bed screw.\n" +#~ "#screw2:\n" +#~ "#screw2_name:\n" +#~ "#screw2_fine_adjust:\n" +#~ "#...\n" +#~ "# Additional bed leveling screws. At least three screws must be\n" +#~ "# defined.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# when moving from one screw location to the next. The default is 5.\n" +#~ "#probe_height: 0\n" +#~ "# The height of the probe (in mm) after adjusting for the thermal\n" +#~ "# expansion of bed and nozzle. The default is zero.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#probe_speed: 5\n" +#~ "# The speed (in mm/s) when moving from a horizontal_move_z position\n" +#~ "# to a probe_height position. The default is 5.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[screws_tilt_adjust]\n" +#~ "#screw1:\n" +#~ "# The X,Y coordinate of the first bed leveling screw. This is a\n" +#~ "# position to command the nozzle to that is directly above the bed\n" +#~ "# screw (or as close as possible while still being above the bed).\n" +#~ "# This is the base screw used in calculations. This parameter must\n" +#~ "# be provided.\n" +#~ "#screw1_name:\n" +#~ "# An arbitrary name for the given screw. This name is displayed when\n" +#~ "# the helper script runs. The default is to use a name based upon\n" +#~ "# the screw XY location.\n" +#~ "#screw2:\n" +#~ "#screw2_name:\n" +#~ "#...\n" +#~ "# Additional bed leveling screws. At least two screws must be\n" +#~ "# defined.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#screw_thread: CW-M3\n" +#~ "# The type of screw used for bed level, M3, M4 or M5 and the\n" +#~ "# direction of the knob used to level the bed, clockwise decrease\n" +#~ "# counter-clockwise decrease.\n" +#~ "# Accepted values: CW-M3, CCW-M3, CW-M4, CCW-M4, CW-M5, CCW-M5.\n" +#~ "# Default value is CW-M3, most printers use an M3 screw and\n" +#~ "# turning the knob clockwise decrease distance.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[z_tilt]\n" +#~ "#z_positions:\n" +#~ "# A list of X,Y coordinates (one per line; subsequent lines\n" +#~ "# indented) describing the location of each bed \"pivot point\". The\n" +#~ "# \"pivot point\" is the point where the bed attaches to the given Z\n" +#~ "# stepper. It is described using nozzle coordinates (the XY position\n" +#~ "# of the nozzle if it could move directly above the point). The\n" +#~ "# first entry corresponds to stepper_z, the second to stepper_z1,\n" +#~ "# the third to stepper_z2, etc. This parameter must be provided.\n" +#~ "#points:\n" +#~ "# A list of X,Y coordinates (one per line; subsequent lines\n" +#~ "# indented) that should be probed during a Z_TILT_ADJUST command.\n" +#~ "# Specify coordinates of the nozzle and be sure the probe is above\n" +#~ "# the bed at the given nozzle coordinates. This parameter must be\n" +#~ "# provided.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#retries: 0\n" +#~ "# Number of times to retry if the probed points aren't within\n" +#~ "# tolerance.\n" +#~ "#retry_tolerance: 0\n" +#~ "# If retries are enabled then retry if largest and smallest probed\n" +#~ "# points differ more than retry_tolerance. Note the smallest unit of\n" +#~ "# change here would be a single step. However if you are probing\n" +#~ "# more points than steppers then you will likely have a fixed\n" +#~ "# minimum value for the range of probed points which you can learn\n" +#~ "# by observing command output.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[quad_gantry_level]\n" +#~ "#gantry_corners:\n" +#~ "# A newline separated list of X,Y coordinates describing the two\n" +#~ "# opposing corners of the gantry. The first entry corresponds to Z,\n" +#~ "# the second to Z2. This parameter must be provided.\n" +#~ "#points:\n" +#~ "# A newline separated list of four X,Y points that should be probed\n" +#~ "# during a QUAD_GANTRY_LEVEL command. Order of the locations is\n" +#~ "# important, and should correspond to Z, Z1, Z2, and Z3 location in\n" +#~ "# order. This parameter must be provided. For maximum accuracy,\n" +#~ "# ensure your probe offsets are configured.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ "#max_adjust: 4\n" +#~ "# Safety limit if an adjustment greater than this value is requested\n" +#~ "# quad_gantry_level will abort.\n" +#~ "#retries: 0\n" +#~ "# Number of times to retry if the probed points aren't within\n" +#~ "# tolerance.\n" +#~ "#retry_tolerance: 0\n" +#~ "# If retries are enabled then retry if largest and smallest probed\n" +#~ "# points differ more than retry_tolerance.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[safe_z_home]\n" +#~ "home_xy_position:\n" +#~ "# A X,Y coordinate (e.g. 100,100) where the Z homing should be\n" +#~ "# performed. This parameter must be provided.\n" +#~ "#speed: 50.0\n" +#~ "# Speed at which the toolhead is moved to the safe Z home\n" +#~ "# coordinate. The default is 50 mm/s\n" +#~ "#z_hop:\n" +#~ "# Distance (in mm) to lift the Z axis prior to homing. This is\n" +#~ "# applied to any homing command, even if it doesn't home the Z axis.\n" +#~ "# If the Z axis is already homed and the current Z position is less\n" +#~ "# than z_hop, then this will lift the head to a height of z_hop. If\n" +#~ "# the Z axis is not already homed the head is lifted by z_hop.\n" +#~ "# The default is to not implement Z hop.\n" +#~ "#z_hop_speed: 20.0\n" +#~ "# Speed (in mm/s) at which the Z axis is lifted prior to homing. The\n" +#~ "# default is 20mm/s.\n" +#~ "#move_to_previous: False\n" +#~ "# When set to True, xy are reset to their previous positions after z\n" +#~ "# homing. The default is False.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[adxl345]\n" +#~ "cs_pin:\n" +#~ "# The SPI enable pin for the sensor. This parameter must be provided.\n" +#~ "#spi_speed: 5000000\n" +#~ "# The SPI speed (in hz) to use when communicating with the chip.\n" +#~ "# The default is 5000000.\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#axes_map: x,y,z\n" +#~ "# The accelerometer axis for each of the printer's x, y, and z axes.\n" +#~ "# This may be useful if the accelerometer is mounted in an\n" +#~ "# orientation that does not match the printer orientation. For\n" +#~ "# example, one could set this to \"y,x,z\" to swap the x and y axes.\n" +#~ "# It is also possible to negate an axis if the accelerometer\n" +#~ "# direction is reversed (eg, \"x,z,-y\"). The default is \"x,y,z\".\n" +#~ "#rate: 3200\n" +#~ "# Output data rate for ADXL345. ADXL345 supports the following data\n" +#~ "# rates: 3200, 1600, 800, 400, 200, 100, 50, and 25. Note that it is\n" +#~ "# not recommended to change this rate from the default 3200, and\n" +#~ "# rates below 800 will considerably affect the quality of resonance\n" +#~ "# measurements.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[resonance_tester]\n" +#~ "#probe_points:\n" +#~ "# A list of X,Y,Z coordinates of points (one point per line) to test\n" +#~ "# resonances at. At least one point is required. Make sure that all\n" +#~ "# points with some safety margin in XY plane (~a few centimeters)\n" +#~ "# are reachable by the toolhead.\n" +#~ "#accel_chip:\n" +#~ "# A name of the accelerometer chip to use for measurements. If\n" +#~ "# adxl345 chip was defined without an explicit name, this parameter\n" +#~ "# can simply reference it as \"accel_chip: adxl345\", otherwise an\n" +#~ "# explicit name must be supplied as well, e.g. \"accel_chip: adxl345\n" +#~ "# my_chip_name\". Either this, or the next two parameters must be\n" +#~ "# set.\n" +#~ "#accel_chip_x:\n" +#~ "#accel_chip_y:\n" +#~ "# Names of the accelerometer chips to use for measurements for each\n" +#~ "# of the axis. Can be useful, for instance, on bed slinger printer,\n" +#~ "# if two separate accelerometers are mounted on the bed (for Y axis)\n" +#~ "# and on the toolhead (for X axis). These parameters have the same\n" +#~ "# format as 'accel_chip' parameter. Only 'accel_chip' or these two\n" +#~ "# parameters must be provided.\n" +#~ "#max_smoothing:\n" +#~ "# Maximum input shaper smoothing to allow for each axis during shaper\n" +#~ "# auto-calibration (with 'SHAPER_CALIBRATE' command). By default no\n" +#~ "# maximum smoothing is specified. Refer to Measuring_Resonances guide\n" +#~ "# for more details on using this feature.\n" +#~ "#min_freq: 5\n" +#~ "# Minimum frequency to test for resonances. The default is 5 Hz.\n" +#~ "#max_freq: 120\n" +#~ "# Maximum frequency to test for resonances. The default is 120 Hz.\n" +#~ "#accel_per_hz: 75\n" +#~ "# This parameter is used to determine which acceleration to use to\n" +#~ "# test a specific frequency: accel = accel_per_hz * freq. Higher the\n" +#~ "# value, the higher is the energy of the oscillations. Can be set to\n" +#~ "# a lower than the default value if the resonances get too strong on\n" +#~ "# the printer. However, lower values make measurements of\n" +#~ "# high-frequency resonances less precise. The default value is 75\n" +#~ "# (mm/sec).\n" +#~ "#hz_per_sec: 1\n" +#~ "# Determines the speed of the test. When testing all frequencies in\n" +#~ "# range [min_freq, max_freq], each second the frequency increases by\n" +#~ "# hz_per_sec. Small values make the test slow, and the large values\n" +#~ "# will decrease the precision of the test. The default value is 1.0\n" +#~ "# (Hz/sec == sec^-2).\n" +#~ msgstr "" + +#~ msgid "" +#~ "[extruder_stepper my_extra_stepper]\n" +#~ "#extruder: extruder\n" +#~ "# The extruder this stepper is synchronized to. The default is\n" +#~ "# \"extruder\".\n" +#~ "#step_pin:\n" +#~ "#dir_pin:\n" +#~ "#enable_pin:\n" +#~ "#microsteps:\n" +#~ "#rotation_distance:\n" +#~ "# See the \"stepper\" section for the definition of the above\n" +#~ "# parameters.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[neopixel my_neopixel]\n" +#~ "pin:\n" +#~ "# The pin connected to the neopixel. This parameter must be\n" +#~ "# provided.\n" +#~ "#chain_count:\n" +#~ "# The number of Neopixel chips that are \"daisy chained\" to the\n" +#~ "# provided pin. The default is 1 (which indicates only a single\n" +#~ "# Neopixel is connected to the pin).\n" +#~ "#color_order: GRB\n" +#~ "# Set the pixel order required by the LED hardware. Options are GRB,\n" +#~ "# RGB, GRBW, or RGBW. The default is GRB.\n" +#~ "#initial_RED: 0.0\n" +#~ "#initial_GREEN: 0.0\n" +#~ "#initial_BLUE: 0.0\n" +#~ "#initial_WHITE: 0.0\n" +#~ "# Sets the initial LED color of the Neopixel. Each value should be\n" +#~ "# between 0.0 and 1.0. The WHITE option is only available on RGBW\n" +#~ "# LEDs. The default for each color is 0.\n" +#~ msgstr "" + +#~ msgid "" +#~ "# The \"replicape\" config section adds \"replicape:stepper_x_enable\"\n" +#~ "# virtual stepper enable pins (for steppers x, y, z, e, and h) and\n" +#~ "# \"replicape:power_x\" PWM output pins (for hotbed, e, h, fan0, fan1,\n" +#~ "# fan2, and fan3) that may then be used elsewhere in the config file.\n" +#~ "[replicape]\n" +#~ "revision:\n" +#~ "# The replicape hardware revision. Currently only revision \"B3\" is\n" +#~ "# supported. This parameter must be provided.\n" +#~ "#enable_pin: !gpio0_20\n" +#~ "# The replicape global enable pin. The default is !gpio0_20 (aka\n" +#~ "# P9_41).\n" +#~ "host_mcu:\n" +#~ "# The name of the mcu config section that communicates with the\n" +#~ "# Klipper \"linux process\" mcu instance. This parameter must be\n" +#~ "# provided.\n" +#~ "#standstill_power_down: False\n" +#~ "# This parameter controls the CFG6_ENN line on all stepper\n" +#~ "# motors. True sets the enable lines to \"open\". The default is\n" +#~ "# False.\n" +#~ "#stepper_x_microstep_mode:\n" +#~ "#stepper_y_microstep_mode:\n" +#~ "#stepper_z_microstep_mode:\n" +#~ "#stepper_e_microstep_mode:\n" +#~ "#stepper_h_microstep_mode:\n" +#~ "# This parameter controls the CFG1 and CFG2 pins of the given\n" +#~ "# stepper motor driver. Available options are: disable, 1, 2,\n" +#~ "# spread2, 4, 16, spread4, spread16, stealth4, and stealth16. The\n" +#~ "# default is disable.\n" +#~ "#stepper_x_current:\n" +#~ "#stepper_y_current:\n" +#~ "#stepper_z_current:\n" +#~ "#stepper_e_current:\n" +#~ "#stepper_h_current:\n" +#~ "# The configured maximum current (in Amps) of the stepper motor\n" +#~ "# driver. This parameter must be provided if the stepper is not in a\n" +#~ "# disable mode.\n" +#~ "#stepper_x_chopper_off_time_high:\n" +#~ "#stepper_y_chopper_off_time_high:\n" +#~ "#stepper_z_chopper_off_time_high:\n" +#~ "#stepper_e_chopper_off_time_high:\n" +#~ "#stepper_h_chopper_off_time_high:\n" +#~ "# This parameter controls the CFG0 pin of the stepper motor driver\n" +#~ "# (True sets CFG0 high, False sets it low). The default is False.\n" +#~ "#stepper_x_chopper_hysteresis_high:\n" +#~ "#stepper_y_chopper_hysteresis_high:\n" +#~ "#stepper_z_chopper_hysteresis_high:\n" +#~ "#stepper_e_chopper_hysteresis_high:\n" +#~ "#stepper_h_chopper_hysteresis_high:\n" +#~ "# This parameter controls the CFG4 pin of the stepper motor driver\n" +#~ "# (True sets CFG4 high, False sets it low). The default is False.\n" +#~ "#stepper_x_chopper_blank_time_high:\n" +#~ "#stepper_y_chopper_blank_time_high:\n" +#~ "#stepper_z_chopper_blank_time_high:\n" +#~ "#stepper_e_chopper_blank_time_high:\n" +#~ "#stepper_h_chopper_blank_time_high:\n" +#~ "# This parameter controls the CFG5 pin of the stepper motor driver\n" +#~ "# (True sets CFG5 high, False sets it low). The default is True.\n" +#~ msgstr "" + +#~ msgid "" +#~ "BMP280/BME280/BME680 two wire interface (I2C) environmental sensors. Note " +#~ "that thoose sensors aee not intended for use with extruders and heater beds," +#~ " but rather for monitoring ambient temperature (C), pressure (hPa), relative" +#~ " humidity and in case of the BME680 gas level. See [sample-" +#~ "macros.cfg](../config/sample-macros.cfg) for a gcode_macro that may be used " +#~ "to report pressure and humidity in addition to temperature." +#~ msgstr "" + +#~ msgid "" +#~ "[printer]\n" +#~ "kinematics: delta\n" +#~ "max_z_velocity:\n" +#~ "# For delta printers this limits the maximum velocity (in mm/s) of\n" +#~ "# moves with z axis movement. This setting can be used to reduce the\n" +#~ "# maximum speed of up/down moves (which require a higher step rate\n" +#~ "# than other moves on a delta printer). The default is to use\n" +#~ "# max_velocity for max_z_velocity.\n" +#~ "#minimum_z_position: 0\n" +#~ "# The minimum Z position that the user may command the head to move\n" +#~ "# to. The default is 0.\n" +#~ "delta_radius:\n" +#~ "# Radius (in mm) of the horizontal circle formed by the three linear\n" +#~ "# axis towers. This parameter may also be calculated as:\n" +#~ "# delta_radius = smooth_rod_offset - effector_offset - carriage_offset\n" +#~ "# This parameter must be provided.\n" +#~ "#print_radius:\n" +#~ "# The radius (in mm) of valid toolhead XY coordinates. One may use\n" +#~ "# this setting to customize the range checking of toolhead moves. If\n" +#~ "# a large value is specified here then it may be possible to command\n" +#~ "# the toolhead into a collision with a tower. The default is to use\n" +#~ "# delta_radius for print_radius (which would normally prevent a\n" +#~ "# tower collision).\n" +#~ "\n" +#~ "# The stepper_a section describes the stepper controlling the front\n" +#~ "# left tower (at 210 degrees). This section also controls the homing\n" +#~ "# parameters (homing_speed, homing_retract_dist) for all towers.\n" +#~ "[stepper_a]\n" +#~ "position_endstop:\n" +#~ "# Distance (in mm) between the nozzle and the bed when the nozzle is\n" +#~ "# in the center of the build area and the endstop triggers. This\n" +#~ "# parameter must be provided for stepper_a; for stepper_b and\n" +#~ "# stepper_c this parameter defaults to the value specified for\n" +#~ "# stepper_a.\n" +#~ "arm_length:\n" +#~ "# Length (in mm) of the diagonal rod that connects this tower to the\n" +#~ "# print head. This parameter must be provided for stepper_a; for\n" +#~ "# stepper_b and stepper_c this parameter defaults to the value\n" +#~ "# specified for stepper_a.\n" +#~ "#angle:\n" +#~ "# This option specifies the angle (in degrees) that the tower is\n" +#~ "# at. The default is 210 for stepper_a, 330 for stepper_b, and 90\n" +#~ "# for stepper_c.\n" +#~ "\n" +#~ "# The stepper_b section describes the stepper controlling the front\n" +#~ "# right tower (at 330 degrees).\n" +#~ "[stepper_b]\n" +#~ "\n" +#~ "# The stepper_c section describes the stepper controlling the rear\n" +#~ "# tower (at 90 degrees).\n" +#~ "[stepper_c]\n" +#~ "\n" +#~ "# The delta_calibrate section enables a DELTA_CALIBRATE extended\n" +#~ "# g-code command that can calibrate the tower endstop positions and\n" +#~ "# angles.\n" +#~ "[delta_calibrate]\n" +#~ "radius:\n" +#~ "# Radius (in mm) of the area that may be probed. This is the radius\n" +#~ "# of nozzle coordinates to be probed; if using an automatic probe\n" +#~ "# with an XY offset then choose a radius small enough so that the\n" +#~ "# probe always fits over the bed. This parameter must be provided.\n" +#~ "#speed: 50\n" +#~ "# The speed (in mm/s) of non-probing moves during the calibration.\n" +#~ "# The default is 50.\n" +#~ "#horizontal_move_z: 5\n" +#~ "# The height (in mm) that the head should be commanded to move to\n" +#~ "# just prior to starting a probe operation. The default is 5.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2208 stepper_x]\n" +#~ "uart_pin:\n" +#~ "# The pin connected to the TMC2208 PDN_UART line. This parameter\n" +#~ "# must be provided.\n" +#~ "#tx_pin:\n" +#~ "# If using separate receive and transmit lines to communicate with\n" +#~ "# the driver then set uart_pin to the receive pin and tx_pin to the\n" +#~ "# transmit pin. The default is to use uart_pin for both reading and\n" +#~ "# writing.\n" +#~ "#select_pins:\n" +#~ "# A comma separated list of pins to set prior to accessing the\n" +#~ "# tmc2208 UART. This may be useful for configuring an analog mux for\n" +#~ "# UART communication. The default is to not configure any pins.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. The default is to use the same\n" +#~ "# value as run_current.\n" +#~ "#sense_resistor: 0.110\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.110 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 20\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 0\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_PWM_REG: 8\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 14\n" +#~ "#driver_PWM_OFS: 36\n" +#~ "# Set the given register during the configuration of the TMC2208\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2660 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC2660 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and set to high\n" +#~ "# after the message transfer completes. This parameter must be\n" +#~ "# provided.\n" +#~ "#spi_speed: 4000000\n" +#~ "# SPI bus frequency used to communicate with the TMC2660 stepper\n" +#~ "# driver. The default is 4000000.\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). This only works if microsteps\n" +#~ "# is set to 16. The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) used by the driver during\n" +#~ "# stepper movement. This parameter must be provided.\n" +#~ "#sense_resistor:\n" +#~ "# The resistance (in ohms) of the motor sense resistor. This\n" +#~ "# parameter must be provided.\n" +#~ "#idle_current_percent: 100\n" +#~ "# The percentage of the run_current the stepper driver will be\n" +#~ "# lowered to when the idle timeout expires (you need to set up the\n" +#~ "# timeout using a [idle_timeout] config section). The current will\n" +#~ "# be raised again once the stepper has to move again. Make sure to\n" +#~ "# set this to a high enough value such that the steppers do not lose\n" +#~ "# their position. There is also small delay until the current is\n" +#~ "# raised again, so take this into account when commanding fast moves\n" +#~ "# while the stepper is idling. The default is 100 (no reduction).\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_RNDTF: 0\n" +#~ "#driver_HDEC: 0\n" +#~ "#driver_CHM: 0\n" +#~ "#driver_HEND: 3\n" +#~ "#driver_HSTRT: 3\n" +#~ "#driver_TOFF: 4\n" +#~ "#driver_SEIMIN: 0\n" +#~ "#driver_SEDN: 0\n" +#~ "#driver_SEMAX: 0\n" +#~ "#driver_SEUP: 0\n" +#~ "#driver_SEMIN: 0\n" +#~ "#driver_SFILT: 0\n" +#~ "#driver_SGT: 0\n" +#~ "#driver_SLPH: 0\n" +#~ "#driver_SLPL: 0\n" +#~ "#driver_DISS2G: 0\n" +#~ "#driver_TS2G: 3\n" +#~ "# Set the given parameter during the configuration of the TMC2660\n" +#~ "# chip. This may be used to set custom driver parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# list above. See the TMC2660 datasheet about what each parameter\n" +#~ "# does and what the restrictions on parameter combinations are. Be\n" +#~ "# especially aware of the CHOPCONF register, where setting CHM to\n" +#~ "# either zero or one will lead to layout changes (the first bit of\n" +#~ "# HDEC) is interpreted as the MSB of HSTRT in this case).\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc5160 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC5160 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. The default is to use the same\n" +#~ "# value as run_current.\n" +#~ "#sense_resistor: 0.075\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.075 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode. Try to reexperience this with tmc5160.\n" +#~ "# Values can be much higher than other tmcs.\n" +#~ "#driver_IHOLDDELAY: 6\n" +#~ "#driver_TPOWERDOWN: 10\n" +#~ "#driver_TBL: 2\n" +#~ "#driver_TOFF: 3\n" +#~ "#driver_HEND: 2\n" +#~ "#driver_HSTRT: 5\n" +#~ "#driver_FD3: 0\n" +#~ "#driver_TPFD: 4\n" +#~ "#driver_CHM: 0\n" +#~ "#driver_VHIGHFS: 0\n" +#~ "#driver_VHIGHCHM: 0\n" +#~ "#driver_DISS2G: 0\n" +#~ "#driver_DISS2VS: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_AUTOGRAD: True\n" +#~ "#driver_PWM_FREQ: 0\n" +#~ "#driver_FREEWHEEL: 0\n" +#~ "#driver_PWM_GRAD: 0\n" +#~ "#driver_PWM_OFS: 30\n" +#~ "#driver_PWM_REG: 4\n" +#~ "#driver_PWM_LIM: 12\n" +#~ "#driver_SGT: 0\n" +#~ "#driver_SEMIN: 0\n" +#~ "#driver_SEUP: 0\n" +#~ "#driver_SEMAX: 0\n" +#~ "#driver_SEDN: 0\n" +#~ "#driver_SEIMIN: 0\n" +#~ "#driver_SFILT: 0\n" +#~ "# Set the given register during the configuration of the TMC5160\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC5160 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc5160_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[stepper_x]\n" +#~ "step_pin:\n" +#~ "# Step GPIO pin (triggered high). This parameter must be provided.\n" +#~ "dir_pin:\n" +#~ "# Direction GPIO pin (high indicates positive direction). This\n" +#~ "# parameter must be provided.\n" +#~ "enable_pin:\n" +#~ "# Enable pin (default is enable high; use ! to indicate enable\n" +#~ "# low). If this parameter is not provided then the stepper motor\n" +#~ "# driver must always be enabled.\n" +#~ "rotation_distance:\n" +#~ "# Distance (in mm) that the axis travels with one full rotation of\n" +#~ "# the stepper motor (or final gear if gear_ratio is specified).\n" +#~ "# This parameter must be provided.\n" +#~ "microsteps:\n" +#~ "# The number of microsteps the stepper motor driver uses. This\n" +#~ "# parameter must be provided.\n" +#~ "#full_steps_per_rotation: 200\n" +#~ "# The number of full steps for one rotation of the stepper motor.\n" +#~ "# Set this to 200 for a 1.8 degree stepper motor or set to 400 for a\n" +#~ "# 0.9 degree motor. The default is 200.\n" +#~ "#gear_ratio:\n" +#~ "# The gear ratio if the stepper motor is connected to the axis via a\n" +#~ "# gearbox. For example, one may specify \"5:1\" if a 5 to 1 gearbox is\n" +#~ "# in use. If the axis has multiple gearboxes one may specify a comma\n" +#~ "# separated list of gear ratios (for example, \"57:11, 2:1\"). If a\n" +#~ "# gear_ratio is specified then rotation_distance specifies the\n" +#~ "# distance the axis travels for one full rotation of the final gear.\n" +#~ "# The default is to not use a gear ratio.\n" +#~ "#step_pulse_duration:\n" +#~ "# The minimum time between the step pulse signal edge and the\n" +#~ "# following \"unstep\" signal edge. This is also used to set the\n" +#~ "# minimum time between a step pulse and a direction change signal.\n" +#~ "# The default is 0.000002 (which is 2us).\n" +#~ "endstop_pin:\n" +#~ "# Endstop switch detection pin. If this endstop pin is on a\n" +#~ "# different mcu than the stepper motor then it enables \"multi-mcu\n" +#~ "# homing\". This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#position_min: 0\n" +#~ "# Minimum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. The default is 0mm.\n" +#~ "position_endstop:\n" +#~ "# Location of the endstop (in mm). This parameter must be provided\n" +#~ "# for the X, Y, and Z steppers on cartesian style printers.\n" +#~ "position_max:\n" +#~ "# Maximum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#homing_speed: 5.0\n" +#~ "# Maximum velocity (in mm/s) of the stepper when homing. The default\n" +#~ "# is 5mm/s.\n" +#~ "#homing_retract_dist: 5.0\n" +#~ "# Distance to backoff (in mm) before homing a second time during\n" +#~ "# homing. Set this to zero to disable the second home. The default\n" +#~ "# is 5mm.\n" +#~ "#homing_retract_speed:\n" +#~ "# Speed to use on the retract move after homing in case this should\n" +#~ "# be different from the homing speed, which is the default for this\n" +#~ "# parameter\n" +#~ "#second_homing_speed:\n" +#~ "# Velocity (in mm/s) of the stepper when performing the second home.\n" +#~ "# The default is homing_speed/2.\n" +#~ "#homing_positive_dir:\n" +#~ "# If true, homing will cause the stepper to move in a positive\n" +#~ "# direction (away from zero); if false, home towards zero. It is\n" +#~ "# better to use the default than to specify this parameter. The\n" +#~ "# default is true if position_endstop is near position_max and false\n" +#~ "# if near position_min.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2130 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC2130 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. The default is to not reduce the\n" +#~ "# current.\n" +#~ "#sense_resistor: 0.110\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.110 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 0\n" +#~ "#driver_TBL: 1\n" +#~ "#driver_TOFF: 4\n" +#~ "#driver_HEND: 7\n" +#~ "#driver_HSTRT: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 4\n" +#~ "#driver_PWM_AMPL: 128\n" +#~ "#driver_SGT: 0\n" +#~ "# Set the given register during the configuration of the TMC2130\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC2130 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc2130_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Printer Skew Correction. It is possible to use software to correct printer " +#~ "skew across 3 planes, xy, xz, yz. This is done by printing a calibration " +#~ "model along a plane and measuring three lengths. Due to the nature of skew " +#~ "correction these lengths are set via gcode. See [skew " +#~ "correction](skew_correction.md) and [command reference](G-Codes.md#skew-" +#~ "correction) for details." +#~ msgstr "" + +#~ msgid "" +#~ "Hall filament width sensor (see [Hall Filament Width " +#~ "Sensor](HallFilamentWidthSensor.md))." +#~ msgstr "" + +#~ msgid "" +#~ "Replicape support - see the [beaglebone guide](beaglebone.md) and the " +#~ "[generic-replicape.cfg](../config/generic-replicape.cfg) file for an " +#~ "example." +#~ msgstr "" + +#~ msgid "" +#~ "sensor_type:\n" +#~ "# One of \"EPCOS 100K B57560G104F\", \"ATC Semitec 104GT-2\",\n" +#~ "# \"NTC 100K beta 3950\", \"Honeywell 100K 135-104LAG-J01\",\n" +#~ "# \"NTC 100K MGB18-104F39050L32\", \"SliceEngineering 450\", or\n" +#~ "# \"TDK NTCG104LH104JT1\"\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the thermistor. This parameter must\n" +#~ "# be provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# The default is 4700 ohms.\n" +#~ "#inline_resistor: 0\n" +#~ "# The resistance (in ohms) of an extra (not heat varying) resistor\n" +#~ "# that is placed inline with the thermistor. It is rare to set this.\n" +#~ "# The default is 0 ohms.\n" +#~ msgstr "" + +#~ msgid "" +#~ "sensor_type: lm75\n" +#~ "#i2c_address:\n" +#~ "# Default is 72 (0x48). Normal range is 72-79 (0x48-0x4F) and the 3\n" +#~ "# low bits of the address are configured via pins on the chip\n" +#~ "# (usually with jumpers or hard wired).\n" +#~ "#i2c_mcu:\n" +#~ "#i2c_bus:\n" +#~ "#i2c_speed:\n" +#~ "# See the \"common I2C settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#lm75_report_time:\n" +#~ "# Interval in seconds between readings. Default is 0.8, with minimum\n" +#~ "# 0.5.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[tmc2130 stepper_x]\n" +#~ "cs_pin:\n" +#~ "# The pin corresponding to the TMC2130 chip select line. This pin\n" +#~ "# will be set to low at the start of SPI messages and raised to high\n" +#~ "# after the message completes. This parameter must be provided.\n" +#~ "#spi_speed:\n" +#~ "#spi_bus:\n" +#~ "#spi_software_sclk_pin:\n" +#~ "#spi_software_mosi_pin:\n" +#~ "#spi_software_miso_pin:\n" +#~ "# See the \"common SPI settings\" section for a description of the\n" +#~ "# above parameters.\n" +#~ "#chain_position:\n" +#~ "#chain_length:\n" +#~ "# These parameters configure an SPI daisy chain. The two parameters\n" +#~ "# define the stepper position in the chain and the total chain length.\n" +#~ "# Position 1 corresponds to the stepper that connects to the MOSI signal.\n" +#~ "# The default is to not use an SPI daisy chain.\n" +#~ "#interpolate: True\n" +#~ "# If true, enable step interpolation (the driver will internally\n" +#~ "# step at a rate of 256 micro-steps). The default is True.\n" +#~ "run_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# during stepper movement. This parameter must be provided.\n" +#~ "#hold_current:\n" +#~ "# The amount of current (in amps RMS) to configure the driver to use\n" +#~ "# when the stepper is not moving. The default is to use the same\n" +#~ "# value as run_current.\n" +#~ "#sense_resistor: 0.110\n" +#~ "# The resistance (in ohms) of the motor sense resistor. The default\n" +#~ "# is 0.110 ohms.\n" +#~ "#stealthchop_threshold: 0\n" +#~ "# The velocity (in mm/s) to set the \"stealthChop\" threshold to. When\n" +#~ "# set, \"stealthChop\" mode will be enabled if the stepper motor\n" +#~ "# velocity is below this value. The default is 0, which disables\n" +#~ "# \"stealthChop\" mode.\n" +#~ "#driver_IHOLDDELAY: 8\n" +#~ "#driver_TPOWERDOWN: 0\n" +#~ "#driver_TBL: 1\n" +#~ "#driver_TOFF: 4\n" +#~ "#driver_HEND: 7\n" +#~ "#driver_HSTRT: 0\n" +#~ "#driver_PWM_AUTOSCALE: True\n" +#~ "#driver_PWM_FREQ: 1\n" +#~ "#driver_PWM_GRAD: 4\n" +#~ "#driver_PWM_AMPL: 128\n" +#~ "#driver_SGT: 0\n" +#~ "# Set the given register during the configuration of the TMC2130\n" +#~ "# chip. This may be used to set custom motor parameters. The\n" +#~ "# defaults for each parameter are next to the parameter name in the\n" +#~ "# above list.\n" +#~ "#diag0_pin:\n" +#~ "#diag1_pin:\n" +#~ "# The micro-controller pin attached to one of the DIAG lines of the\n" +#~ "# TMC2130 chip. Only a single diag pin should be specified. The pin\n" +#~ "# is \"active low\" and is thus normally prefaced with \"^!\". Setting\n" +#~ "# this creates a \"tmc2130_stepper_x:virtual_endstop\" virtual pin\n" +#~ "# which may be used as the stepper's endstop_pin. Doing this enables\n" +#~ "# \"sensorless homing\". (Be sure to also set driver_SGT to an\n" +#~ "# appropriate sensitivity value.) The default is to not enable\n" +#~ "# sensorless homing.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[stepper_x]\n" +#~ "step_pin:\n" +#~ "# Step GPIO pin (triggered high). This parameter must be provided.\n" +#~ "dir_pin:\n" +#~ "# Direction GPIO pin (high indicates positive direction). This\n" +#~ "# parameter must be provided.\n" +#~ "enable_pin:\n" +#~ "# Enable pin (default is enable high; use ! to indicate enable\n" +#~ "# low). If this parameter is not provided then the stepper motor\n" +#~ "# driver must always be enabled.\n" +#~ "rotation_distance:\n" +#~ "# Distance (in mm) that the axis travels with one full rotation of\n" +#~ "# the stepper motor (or final gear if gear_ratio is specified).\n" +#~ "# This parameter must be provided.\n" +#~ "microsteps:\n" +#~ "# The number of microsteps the stepper motor driver uses. This\n" +#~ "# parameter must be provided.\n" +#~ "#full_steps_per_rotation: 200\n" +#~ "# The number of full steps for one rotation of the stepper motor.\n" +#~ "# Set this to 200 for a 1.8 degree stepper motor or set to 400 for a\n" +#~ "# 0.9 degree motor. The default is 200.\n" +#~ "#gear_ratio:\n" +#~ "# The gear ratio if the stepper motor is connected to the axis via a\n" +#~ "# gearbox. For example, one may specify \"5:1\" if a 5 to 1 gearbox is\n" +#~ "# in use. If the axis has multiple gearboxes one may specify a comma\n" +#~ "# separated list of gear ratios (for example, \"57:11, 2:1\"). If a\n" +#~ "# gear_ratio is specified then rotation_distance specifies the\n" +#~ "# distance the axis travels for one full rotation of the final gear.\n" +#~ "# The default is to not use a gear ratio.\n" +#~ "endstop_pin:\n" +#~ "# Endstop switch detection pin. If this endstop pin is on a\n" +#~ "# different mcu than the stepper motor then it enables \"multi-mcu\n" +#~ "# homing\". This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#position_min: 0\n" +#~ "# Minimum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. The default is 0mm.\n" +#~ "position_endstop:\n" +#~ "# Location of the endstop (in mm). This parameter must be provided\n" +#~ "# for the X, Y, and Z steppers on cartesian style printers.\n" +#~ "position_max:\n" +#~ "# Maximum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#homing_speed: 5.0\n" +#~ "# Maximum velocity (in mm/s) of the stepper when homing. The default\n" +#~ "# is 5mm/s.\n" +#~ "#homing_retract_dist: 5.0\n" +#~ "# Distance to backoff (in mm) before homing a second time during\n" +#~ "# homing. Set this to zero to disable the second home. The default\n" +#~ "# is 5mm.\n" +#~ "#homing_retract_speed:\n" +#~ "# Speed to use on the retract move after homing in case this should\n" +#~ "# be different from the homing speed, which is the default for this\n" +#~ "# parameter\n" +#~ "#second_homing_speed:\n" +#~ "# Velocity (in mm/s) of the stepper when performing the second home.\n" +#~ "# The default is homing_speed/2.\n" +#~ "#homing_positive_dir:\n" +#~ "# If true, homing will cause the stepper to move in a positive\n" +#~ "# direction (away from zero); if false, home towards zero. It is\n" +#~ "# better to use the default than to specify this parameter. The\n" +#~ "# default is true if position_endstop is near position_max and false\n" +#~ "# if near position_min.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[extruder]\n" +#~ "step_pin:\n" +#~ "dir_pin:\n" +#~ "enable_pin:\n" +#~ "microsteps:\n" +#~ "rotation_distance:\n" +#~ "#full_steps_per_rotation:\n" +#~ "#gear_ratio:\n" +#~ "# See the \"stepper\" section for a description of the above parameters.\n" +#~ "nozzle_diameter:\n" +#~ "# Diameter of the nozzle orifice (in mm). This parameter must be\n" +#~ "# provided.\n" +#~ "filament_diameter:\n" +#~ "# The nominal diameter of the raw filament (in mm) as it enters the\n" +#~ "# extruder. This parameter must be provided.\n" +#~ "#max_extrude_cross_section:\n" +#~ "# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +#~ "# extrusion width multiplied by layer height). This setting prevents\n" +#~ "# excessive amounts of extrusion during relatively small XY moves.\n" +#~ "# If a move requests an extrusion rate that would exceed this value\n" +#~ "# it will cause an error to be returned. The default is: 4.0 *\n" +#~ "# nozzle_diameter^2\n" +#~ "#instantaneous_corner_velocity: 1.000\n" +#~ "# The maximum instantaneous velocity change (in mm/s) of the\n" +#~ "# extruder during the junction of two moves. The default is 1mm/s.\n" +#~ "#max_extrude_only_distance: 50.0\n" +#~ "# Maximum length (in mm of raw filament) that a retraction or\n" +#~ "# extrude-only move may have. If a retraction or extrude-only move\n" +#~ "# requests a distance greater than this value it will cause an error\n" +#~ "# to be returned. The default is 50mm.\n" +#~ "#max_extrude_only_velocity:\n" +#~ "#max_extrude_only_accel:\n" +#~ "# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +#~ "# extruder motor for retractions and extrude-only moves. These\n" +#~ "# settings do not have any impact on normal printing moves. If not\n" +#~ "# specified then they are calculated to match the limit an XY\n" +#~ "# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +#~ "# have.\n" +#~ "#pressure_advance: 0.0\n" +#~ "# The amount of raw filament to push into the extruder during\n" +#~ "# extruder acceleration. An equal amount of filament is retracted\n" +#~ "# during deceleration. It is measured in millimeters per\n" +#~ "# millimeter/second. The default is 0, which disables pressure\n" +#~ "# advance.\n" +#~ "#pressure_advance_smooth_time: 0.040\n" +#~ "# A time range (in seconds) to use when calculating the average\n" +#~ "# extruder velocity for pressure advance. A larger value results in\n" +#~ "# smoother extruder movements. This parameter may not exceed 200ms.\n" +#~ "# This setting only applies if pressure_advance is non-zero. The\n" +#~ "# default is 0.040 (40 milliseconds).\n" +#~ "#\n" +#~ "# The remaining variables describe the extruder heater.\n" +#~ "heater_pin:\n" +#~ "# PWM output pin controlling the heater. This parameter must be\n" +#~ "# provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +#~ "# fully enabled for extended periods, while a value of 0.5 would\n" +#~ "# allow the pin to be enabled for no more than half the time. This\n" +#~ "# setting may be used to limit the total power output (over extended\n" +#~ "# periods) to the heater. The default is 1.0.\n" +#~ "sensor_type:\n" +#~ "# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +#~ "# \"ATC Semitec 104GT-2\", \"NTC 100K beta 3950\", \"Honeywell 100K\n" +#~ "# 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\", \"SliceEngineering\n" +#~ "# 450\", and \"TDK NTCG104LH104JT1\". See the \"Temperature sensors\"\n" +#~ "# section for other sensors. This parameter must be provided.\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the sensor. This parameter must be\n" +#~ "# provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# This parameter is only valid when the sensor is a thermistor. The\n" +#~ "# default is 4700 ohms.\n" +#~ "#smooth_time: 1.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed to reduce the impact of measurement noise. The default\n" +#~ "# is 1 seconds.\n" +#~ "control:\n" +#~ "# Control algorithm (either pid or watermark). This parameter must\n" +#~ "# be provided.\n" +#~ "pid_Kp:\n" +#~ "# Kp is the \"proportional\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "pid_Ki:\n" +#~ "# Ki is the \"integral\" constant for the pid. This parameter must be\n" +#~ "# provided for PID heaters.\n" +#~ "pid_Kd:\n" +#~ "# Kd is the \"derivative\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "#max_delta: 2.0\n" +#~ "# On 'watermark' controlled heaters this is the number of degrees in\n" +#~ "# Celsius above the target temperature before disabling the heater\n" +#~ "# as well as the number of degrees below the target before\n" +#~ "# re-enabling the heater. The default is 2 degrees Celsius.\n" +#~ "#pwm_cycle_time: 0.100\n" +#~ "# Time in seconds for each software PWM cycle of the heater. It is\n" +#~ "# not recommended to set this unless there is an electrical\n" +#~ "# requirement to switch the heater faster than 10 times a second.\n" +#~ "# The default is 0.100 seconds.\n" +#~ "#min_extrude_temp: 170\n" +#~ "# The minimum temperature (in Celsius) at which extruder move\n" +#~ "# commands may be issued. The default is 170 Celsius.\n" +#~ "min_temp:\n" +#~ "max_temp:\n" +#~ "# The maximum range of valid temperatures (in Celsius) that the\n" +#~ "# heater must remain within. This controls a safety feature\n" +#~ "# implemented in the micro-controller code - should the measured\n" +#~ "# temperature ever fall outside this range then the micro-controller\n" +#~ "# will go into a shutdown state. This check can help detect some\n" +#~ "# heater and sensor hardware failures. Set this range just wide\n" +#~ "# enough so that reasonable temperatures do not result in an error.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[display]\n" +#~ "lcd_type:\n" +#~ "# The type of LCD chip in use. This may be \"hd44780\", \"hd44780_spi\",\n" +#~ "# \"st7920\", \"emulated_st7920\", \"uc1701\", \"ssd1306\", or \"sh1106\".\n" +#~ "# See the display sections below for information on each type and\n" +#~ "# additional parameters they provide. This parameter must be\n" +#~ "# provided.\n" +#~ "#display_group:\n" +#~ "# The name of the display_data group to show on the display. This\n" +#~ "# controls the content of the screen (see the \"display_data\" section\n" +#~ "# for more information). The default is _default_20x4 for hd44780\n" +#~ "# displays and _default_16x4 for other displays.\n" +#~ "#menu_timeout:\n" +#~ "# Timeout for menu. Being inactive this amount of seconds will\n" +#~ "# trigger menu exit or return to root menu when having autorun\n" +#~ "# enabled. The default is 0 seconds (disabled)\n" +#~ "#menu_root:\n" +#~ "# Name of the main menu section to show when clicking the encoder\n" +#~ "# on the home screen. The defaults is __main, and this shows the\n" +#~ "# the default menus as defined in klippy/extras/display/menu.cfg\n" +#~ "#menu_reverse_navigation:\n" +#~ "# When enabled it will reverse up and down directions for list\n" +#~ "# navigation. The default is False. This parameter is optional.\n" +#~ "#encoder_pins:\n" +#~ "# The pins connected to encoder. 2 pins must be provided when using\n" +#~ "# encoder. This parameter must be provided when using menu.\n" +#~ "#click_pin:\n" +#~ "# The pin connected to 'enter' button or encoder 'click'. This\n" +#~ "# parameter must be provided when using menu. The presence of an\n" +#~ "# 'analog_range_click_pin' config parameter turns this parameter\n" +#~ "# from digital to analog.\n" +#~ "#back_pin:\n" +#~ "# The pin connected to 'back' button. This parameter is optional,\n" +#~ "# menu can be used without it. The presence of an\n" +#~ "# 'analog_range_back_pin' config parameter turns this parameter from\n" +#~ "# digital to analog.\n" +#~ "#up_pin:\n" +#~ "# The pin connected to 'up' button. This parameter must be provided\n" +#~ "# when using menu without encoder. The presence of an\n" +#~ "# 'analog_range_up_pin' config parameter turns this parameter from\n" +#~ "# digital to analog.\n" +#~ "#down_pin:\n" +#~ "# The pin connected to 'down' button. This parameter must be\n" +#~ "# provided when using menu without encoder. The presence of an\n" +#~ "# 'analog_range_down_pin' config parameter turns this parameter from\n" +#~ "# digital to analog.\n" +#~ "#kill_pin:\n" +#~ "# The pin connected to 'kill' button. This button will call\n" +#~ "# emergency stop. The presence of an 'analog_range_kill_pin' config\n" +#~ "# parameter turns this parameter from digital to analog.\n" +#~ "#analog_pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the analog\n" +#~ "# button. The default is 4700 ohms.\n" +#~ "#analog_range_click_pin:\n" +#~ "# The resistance range for a 'enter' button. Range minimum and\n" +#~ "# maximum comma-separated values must be provided when using analog\n" +#~ "# button.\n" +#~ "#analog_range_back_pin:\n" +#~ "# The resistance range for a 'back' button. Range minimum and\n" +#~ "# maximum comma-separated values must be provided when using analog\n" +#~ "# button.\n" +#~ "#analog_range_up_pin:\n" +#~ "# The resistance range for a 'up' button. Range minimum and maximum\n" +#~ "# comma-separated values must be provided when using analog button.\n" +#~ "#analog_range_down_pin:\n" +#~ "# The resistance range for a 'down' button. Range minimum and\n" +#~ "# maximum comma-separated values must be provided when using analog\n" +#~ "# button.\n" +#~ "#analog_range_kill_pin:\n" +#~ "# The resistance range for a 'kill' button. Range minimum and\n" +#~ "# maximum comma-separated values must be provided when using analog\n" +#~ "# button.\n" +#~ msgstr "" + +#~ msgid "" +#~ "See the [rotation distance document](Rotation_Distance.md) for information " +#~ "on calculating the `rotation_distance` parameter." +#~ msgstr "" + +#~ msgid "" +#~ "[probe]\n" +#~ "pin:\n" +#~ "# Probe detection pin. This parameter must be provided.\n" +#~ "#deactivate_on_each_sample: True\n" +#~ "# This determines if Klipper should execute deactivation gcode\n" +#~ "# between each probe attempt when performing a multiple probe\n" +#~ "# sequence. The default is True.\n" +#~ "#x_offset: 0.0\n" +#~ "# The distance (in mm) between the probe and the nozzle along the\n" +#~ "# x-axis. The default is 0.\n" +#~ "#y_offset: 0.0\n" +#~ "# The distance (in mm) between the probe and the nozzle along the\n" +#~ "# y-axis. The default is 0.\n" +#~ "z_offset:\n" +#~ "# The distance (in mm) between the bed and the nozzle when the probe\n" +#~ "# triggers. This parameter must be provided.\n" +#~ "#speed: 5.0\n" +#~ "# Speed (in mm/s) of the Z axis when probing. The default is 5mm/s.\n" +#~ "#samples: 1\n" +#~ "# The number of times to probe each point. The probed z-values will\n" +#~ "# be averaged. The default is to probe 1 time.\n" +#~ "#sample_retract_dist: 2.0\n" +#~ "# The distance (in mm) to lift the toolhead between each sample (if\n" +#~ "# sampling more than once). The default is 2mm.\n" +#~ "#lift_speed:\n" +#~ "# Speed (in mm/s) of the Z axis when lifting the probe between\n" +#~ "# samples. The default is to use the same value as the 'speed'\n" +#~ "# parameter.\n" +#~ "#samples_result: average\n" +#~ "# The calculation method when sampling more than once - either\n" +#~ "# \"median\" or \"average\". The default is average.\n" +#~ "#samples_tolerance: 0.100\n" +#~ "# The maximum Z distance (in mm) that a sample may differ from other\n" +#~ "# samples. If this tolerance is exceeded then either an error is\n" +#~ "# reported or the attempt is restarted (see\n" +#~ "# samples_tolerance_retries). The default is 0.100mm.\n" +#~ "#samples_tolerance_retries: 0\n" +#~ "# The number of times to retry if a sample is found that exceeds\n" +#~ "# samples_tolerance. On a retry, all current samples are discarded\n" +#~ "# and the probe attempt is restarted. If a valid set of samples are\n" +#~ "# not obtained in the given number of retries then an error is\n" +#~ "# reported. The default is zero which causes an error to be reported\n" +#~ "# on the first sample that exceeds samples_tolerance.\n" +#~ "#activate_gcode:\n" +#~ "# A list of G-Code commands to execute prior to each probe attempt.\n" +#~ "# See docs/Command_Templates.md for G-Code format. This may be\n" +#~ "# useful if the probe needs to be activated in some way. Do not\n" +#~ "# issue any commands here that move the toolhead (eg, G1). The\n" +#~ "# default is to not run any special G-Code commands on activation.\n" +#~ "#deactivate_gcode:\n" +#~ "# A list of G-Code commands to execute after each probe attempt\n" +#~ "# completes. See docs/Command_Templates.md for G-Code format. Do not\n" +#~ "# issue any commands here that move the toolhead. The default is to\n" +#~ "# not run any special G-Code commands on deactivation.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[stepper_x]\n" +#~ "step_pin:\n" +#~ "# Step GPIO pin (triggered high). This parameter must be provided.\n" +#~ "dir_pin:\n" +#~ "# Direction GPIO pin (high indicates positive direction). This\n" +#~ "# parameter must be provided.\n" +#~ "enable_pin:\n" +#~ "# Enable pin (default is enable high; use ! to indicate enable\n" +#~ "# low). If this parameter is not provided then the stepper motor\n" +#~ "# driver must always be enabled.\n" +#~ "rotation_distance:\n" +#~ "# Distance (in mm) that the axis travels with one full rotation of\n" +#~ "# the stepper motor (or final gear if gear_ratio is specified).\n" +#~ "# This parameter must be provided.\n" +#~ "microsteps:\n" +#~ "# The number of microsteps the stepper motor driver uses. This\n" +#~ "# parameter must be provided.\n" +#~ "#full_steps_per_rotation: 200\n" +#~ "# The number of full steps for one rotation of the stepper motor.\n" +#~ "# Set this to 200 for a 1.8 degree stepper motor or set to 400 for a\n" +#~ "# 0.9 degree motor. The default is 200.\n" +#~ "#gear_ratio:\n" +#~ "# The gear ratio if the stepper motor is connected to the axis via a\n" +#~ "# gearbox. For example, one may specify \"5:1\" if a 5 to 1 gearbox is\n" +#~ "# in use. If the axis has multiple gearboxes one may specify a comma\n" +#~ "# separated list of gear ratios (for example, \"57:11, 2:1\"). If a\n" +#~ "# gear_ratio is specified then rotation_distance specifies the\n" +#~ "# distance the axis travels for one full rotation of the final gear.\n" +#~ "# The default is to not use a gear ratio.\n" +#~ "endstop_pin:\n" +#~ "# Endstop switch detection pin. This parameter must be provided for\n" +#~ "# the X, Y, and Z steppers on cartesian style printers.\n" +#~ "#position_min: 0\n" +#~ "# Minimum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. The default is 0mm.\n" +#~ "position_endstop:\n" +#~ "# Location of the endstop (in mm). This parameter must be provided\n" +#~ "# for the X, Y, and Z steppers on cartesian style printers.\n" +#~ "position_max:\n" +#~ "# Maximum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#homing_speed: 5.0\n" +#~ "# Maximum velocity (in mm/s) of the stepper when homing. The default\n" +#~ "# is 5mm/s.\n" +#~ "#homing_retract_dist: 5.0\n" +#~ "# Distance to backoff (in mm) before homing a second time during\n" +#~ "# homing. Set this to zero to disable the second home. The default\n" +#~ "# is 5mm.\n" +#~ "#homing_retract_speed:\n" +#~ "# Speed to use on the retract move after homing in case this should\n" +#~ "# be different from the homing speed, which is the default for this\n" +#~ "# parameter\n" +#~ "#second_homing_speed:\n" +#~ "# Velocity (in mm/s) of the stepper when performing the second home.\n" +#~ "# The default is homing_speed/2.\n" +#~ "#homing_positive_dir:\n" +#~ "# If true, homing will cause the stepper to move in a positive\n" +#~ "# direction (away from zero); if false, home towards zero. It is\n" +#~ "# better to use the default than to specify this parameter. The\n" +#~ "# default is true if position_endstop is near position_max and false\n" +#~ "# if near position_min.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[extruder]\n" +#~ "step_pin:\n" +#~ "dir_pin:\n" +#~ "enable_pin:\n" +#~ "microsteps:\n" +#~ "rotation_distance:\n" +#~ "#full_steps_per_rotation:\n" +#~ "#gear_ratio:\n" +#~ "# See the \"stepper\" section for a description of the above parameters.\n" +#~ "nozzle_diameter:\n" +#~ "# Diameter of the nozzle orifice (in mm). This parameter must be\n" +#~ "# provided.\n" +#~ "filament_diameter:\n" +#~ "# The nominal diameter of the raw filament (in mm) as it enters the\n" +#~ "# extruder. This parameter must be provided.\n" +#~ "#max_extrude_cross_section:\n" +#~ "# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +#~ "# extrusion width multiplied by layer height). This setting prevents\n" +#~ "# excessive amounts of extrusion during relatively small XY moves.\n" +#~ "# If a move requests an extrusion rate that would exceed this value\n" +#~ "# it will cause an error to be returned. The default is: 4.0 *\n" +#~ "# nozzle_diameter^2\n" +#~ "#instantaneous_corner_velocity: 1.000\n" +#~ "# The maximum instantaneous velocity change (in mm/s) of the\n" +#~ "# extruder during the junction of two moves. The default is 1mm/s.\n" +#~ "#max_extrude_only_distance: 50.0\n" +#~ "# Maximum length (in mm of raw filament) that a retraction or\n" +#~ "# extrude-only move may have. If a retraction or extrude-only move\n" +#~ "# requests a distance greater than this value it will cause an error\n" +#~ "# to be returned. The default is 50mm.\n" +#~ "#max_extrude_only_velocity:\n" +#~ "#max_extrude_only_accel:\n" +#~ "# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +#~ "# extruder motor for retractions and extrude-only moves. These\n" +#~ "# settings do not have any impact on normal printing moves. If not\n" +#~ "# specified then they are calculated to match the limit an XY\n" +#~ "# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +#~ "# have.\n" +#~ "#pressure_advance: 0.0\n" +#~ "# The amount of raw filament to push into the extruder during\n" +#~ "# extruder acceleration. An equal amount of filament is retracted\n" +#~ "# during deceleration. It is measured in millimeters per\n" +#~ "# millimeter/second. The default is 0, which disables pressure\n" +#~ "# advance.\n" +#~ "#pressure_advance_smooth_time: 0.040\n" +#~ "# A time range (in seconds) to use when calculating the average\n" +#~ "# extruder velocity for pressure advance. A larger value results in\n" +#~ "# smoother extruder movements. This parameter may not exceed 200ms.\n" +#~ "# This setting only applies if pressure_advance is non-zero. The\n" +#~ "# default is 0.040 (40 milliseconds).\n" +#~ "#\n" +#~ "# The remaining variables describe the extruder heater.\n" +#~ "heater_pin:\n" +#~ "# PWM output pin controlling the heater. This parameter must be\n" +#~ "# provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +#~ "# fully enabled for extended periods, while a value of 0.5 would\n" +#~ "# allow the pin to be enabled for no more than half the time. This\n" +#~ "# setting may be used to limit the total power output (over extended\n" +#~ "# periods) to the heater. The default is 1.0.\n" +#~ "sensor_type:\n" +#~ "# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +#~ "# \"ATC Semitec 104GT-2\", \"NTC 100K beta 3950\", \"Honeywell 100K\n" +#~ "# 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\", \"SliceEngineering\n" +#~ "# 450\", and \"TDK NTCG104LH104JT1\". See the \"Temperature sensors\"\n" +#~ "# section for other sensors. This parameter must be provided.\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the sensor. This parameter must be\n" +#~ "# provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# This parameter is only valid when the sensor is a thermistor. The\n" +#~ "# default is 4700 ohms.\n" +#~ "#smooth_time: 2.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed to reduce the impact of measurement noise. The default\n" +#~ "# is 2 seconds.\n" +#~ "control:\n" +#~ "# Control algorithm (either pid or watermark). This parameter must\n" +#~ "# be provided.\n" +#~ "pid_Kp:\n" +#~ "# Kp is the \"proportional\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "pid_Ki:\n" +#~ "# Ki is the \"integral\" constant for the pid. This parameter must be\n" +#~ "# provided for PID heaters.\n" +#~ "pid_Kd:\n" +#~ "# Kd is the \"derivative\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "#max_delta: 2.0\n" +#~ "# On 'watermark' controlled heaters this is the number of degrees in\n" +#~ "# Celsius above the target temperature before disabling the heater\n" +#~ "# as well as the number of degrees below the target before\n" +#~ "# re-enabling the heater. The default is 2 degrees Celsius.\n" +#~ "#pwm_cycle_time: 0.100\n" +#~ "# Time in seconds for each software PWM cycle of the heater. It is\n" +#~ "# not recommended to set this unless there is an electrical\n" +#~ "# requirement to switch the heater faster than 10 times a second.\n" +#~ "# The default is 0.100 seconds.\n" +#~ "#min_extrude_temp: 170\n" +#~ "# The minimum temperature (in Celsius) at which extruder move\n" +#~ "# commands may be issued. The default is 170 Celsius.\n" +#~ "min_temp:\n" +#~ "max_temp:\n" +#~ "# The maximum range of valid temperatures (in Celsius) that the\n" +#~ "# heater must remain within. This controls a safety feature\n" +#~ "# implemented in the micro-controller code - should the measured\n" +#~ "# temperature ever fall outside this range then the micro-controller\n" +#~ "# will go into a shutdown state. This check can help detect some\n" +#~ "# heater and sensor hardware failures. Set this range just wide\n" +#~ "# enough so that reasonable temperatures do not result in an error.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[extruder]\n" +#~ "step_pin:\n" +#~ "dir_pin:\n" +#~ "enable_pin:\n" +#~ "microsteps:\n" +#~ "rotation_distance:\n" +#~ "# See the \"stepper\" section for a description of the above parameters.\n" +#~ "nozzle_diameter:\n" +#~ "# Diameter of the nozzle orifice (in mm). This parameter must be\n" +#~ "# provided.\n" +#~ "filament_diameter:\n" +#~ "# The nominal diameter of the raw filament (in mm) as it enters the\n" +#~ "# extruder. This parameter must be provided.\n" +#~ "#max_extrude_cross_section:\n" +#~ "# Maximum area (in mm^2) of an extrusion cross section (eg,\n" +#~ "# extrusion width multiplied by layer height). This setting prevents\n" +#~ "# excessive amounts of extrusion during relatively small XY moves.\n" +#~ "# If a move requests an extrusion rate that would exceed this value\n" +#~ "# it will cause an error to be returned. The default is: 4.0 *\n" +#~ "# nozzle_diameter^2\n" +#~ "#instantaneous_corner_velocity: 1.000\n" +#~ "# The maximum instantaneous velocity change (in mm/s) of the\n" +#~ "# extruder during the junction of two moves. The default is 1mm/s.\n" +#~ "#max_extrude_only_distance: 50.0\n" +#~ "# Maximum length (in mm of raw filament) that a retraction or\n" +#~ "# extrude-only move may have. If a retraction or extrude-only move\n" +#~ "# requests a distance greater than this value it will cause an error\n" +#~ "# to be returned. The default is 50mm.\n" +#~ "#max_extrude_only_velocity:\n" +#~ "#max_extrude_only_accel:\n" +#~ "# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the\n" +#~ "# extruder motor for retractions and extrude-only moves. These\n" +#~ "# settings do not have any impact on normal printing moves. If not\n" +#~ "# specified then they are calculated to match the limit an XY\n" +#~ "# printing move with a cross section of 4.0*nozzle_diameter^2 would\n" +#~ "# have.\n" +#~ "#pressure_advance: 0.0\n" +#~ "# The amount of raw filament to push into the extruder during\n" +#~ "# extruder acceleration. An equal amount of filament is retracted\n" +#~ "# during deceleration. It is measured in millimeters per\n" +#~ "# millimeter/second. The default is 0, which disables pressure\n" +#~ "# advance.\n" +#~ "#pressure_advance_smooth_time: 0.040\n" +#~ "# A time range (in seconds) to use when calculating the average\n" +#~ "# extruder velocity for pressure advance. A larger value results in\n" +#~ "# smoother extruder movements. This parameter may not exceed 200ms.\n" +#~ "# This setting only applies if pressure_advance is non-zero. The\n" +#~ "# default is 0.040 (40 milliseconds).\n" +#~ "#\n" +#~ "# The remaining variables describe the extruder heater.\n" +#~ "heater_pin:\n" +#~ "# PWM output pin controlling the heater. This parameter must be\n" +#~ "# provided.\n" +#~ "#max_power: 1.0\n" +#~ "# The maximum power (expressed as a value from 0.0 to 1.0) that the\n" +#~ "# heater_pin may be set to. The value 1.0 allows the pin to be set\n" +#~ "# fully enabled for extended periods, while a value of 0.5 would\n" +#~ "# allow the pin to be enabled for no more than half the time. This\n" +#~ "# setting may be used to limit the total power output (over extended\n" +#~ "# periods) to the heater. The default is 1.0.\n" +#~ "sensor_type:\n" +#~ "# Type of sensor - common thermistors are \"EPCOS 100K B57560G104F\",\n" +#~ "# \"ATC Semitec 104GT-2\", \"NTC 100K beta 3950\", \"Honeywell 100K\n" +#~ "# 135-104LAG-J01\", \"NTC 100K MGB18-104F39050L32\", \"SliceEngineering\n" +#~ "# 450\", and \"TDK NTCG104LH104JT1\". See the \"Temperature sensors\"\n" +#~ "# section for other sensors. This parameter must be provided.\n" +#~ "sensor_pin:\n" +#~ "# Analog input pin connected to the sensor. This parameter must be\n" +#~ "# provided.\n" +#~ "#pullup_resistor: 4700\n" +#~ "# The resistance (in ohms) of the pullup attached to the thermistor.\n" +#~ "# This parameter is only valid when the sensor is a thermistor. The\n" +#~ "# default is 4700 ohms.\n" +#~ "#smooth_time: 2.0\n" +#~ "# A time value (in seconds) over which temperature measurements will\n" +#~ "# be smoothed to reduce the impact of measurement noise. The default\n" +#~ "# is 2 seconds.\n" +#~ "control:\n" +#~ "# Control algorithm (either pid or watermark). This parameter must\n" +#~ "# be provided.\n" +#~ "pid_Kp:\n" +#~ "# Kp is the \"proportional\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "pid_Ki:\n" +#~ "# Ki is the \"integral\" constant for the pid. This parameter must be\n" +#~ "# provided for PID heaters.\n" +#~ "pid_Kd:\n" +#~ "# Kd is the \"derivative\" constant for the pid. This parameter must\n" +#~ "# be provided for PID heaters.\n" +#~ "#max_delta: 2.0\n" +#~ "# On 'watermark' controlled heaters this is the number of degrees in\n" +#~ "# Celsius above the target temperature before disabling the heater\n" +#~ "# as well as the number of degrees below the target before\n" +#~ "# re-enabling the heater. The default is 2 degrees Celsius.\n" +#~ "#pwm_cycle_time: 0.100\n" +#~ "# Time in seconds for each software PWM cycle of the heater. It is\n" +#~ "# not recommended to set this unless there is an electrical\n" +#~ "# requirement to switch the heater faster than 10 times a second.\n" +#~ "# The default is 0.100 seconds.\n" +#~ "#min_extrude_temp: 170\n" +#~ "# The minimum temperature (in Celsius) at which extruder move\n" +#~ "# commands may be issued. The default is 170 Celsius.\n" +#~ "min_temp:\n" +#~ "max_temp:\n" +#~ "# The maximum range of valid temperatures (in Celsius) that the\n" +#~ "# heater must remain within. This controls a safety feature\n" +#~ "# implemented in the micro-controller code - should the measured\n" +#~ "# temperature ever fall outside this range then the micro-controller\n" +#~ "# will go into a shutdown state. This check can help detect some\n" +#~ "# heater and sensor hardware failures. Set this range just wide\n" +#~ "# enough so that reasonable temperatures do not result in an error.\n" +#~ "# These parameters must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "Controller cooling fan (one may define any number of sections with a " +#~ "\"controller_fan\" prefix). A \"controller fan\" is a fan that will be " +#~ "enabled whenever its associated heater or any configured stepper driver is " +#~ "active. The fan will stop whenever an idle_timeout is reached to ensure no " +#~ "overheating will occur after deactivating a watched component." +#~ msgstr "" + +#~ msgid "" +#~ "[controller_fan my_controller_fan]\n" +#~ "#pin:\n" +#~ "#max_power:\n" +#~ "#shutdown_speed:\n" +#~ "#cycle_time:\n" +#~ "#hardware_pwm:\n" +#~ "#kick_start_time:\n" +#~ "#off_below:\n" +#~ "#tachometer_pin:\n" +#~ "#tachometer_ppr:\n" +#~ "#tachometer_poll_interval:\n" +#~ "# See the \"fan\" section for a description of the above parameters.\n" +#~ "#fan_speed: 1.0\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when a heater or stepper driver is active.\n" +#~ "# The default is 1.0\n" +#~ "#idle_timeout:\n" +#~ "# The amount of time (in seconds) after a stepper driver or heater\n" +#~ "# was active and the fan should be kept running. The default\n" +#~ "# is 30 seconds.\n" +#~ "#idle_speed:\n" +#~ "# The fan speed (expressed as a value from 0.0 to 1.0) that the fan\n" +#~ "# will be set to when a heater or stepper driver was active and\n" +#~ "# before the idle_timeout is reached. The default is fan_speed.\n" +#~ "#heater:\n" +#~ "# Name of the config section defining the heater that this fan is\n" +#~ "# associated with. If a comma separated list of heater names is\n" +#~ "# provided here, then the fan will be enabled when any of the given\n" +#~ "# heaters are enabled. The default is \"extruder\".\n" +#~ msgstr "" + +#~ msgid "" +#~ "SAMD SERCOM configuration to specify which pins to use on a given SERCOM. " +#~ "One may define one section with the \"samd_sercom\" prefix per SERCOM " +#~ "available. Each SERCOM must be configured prior to using it as SPI or I2C " +#~ "peripheral. Place this config section above any other section that makes use" +#~ " of SPI or I2C buses." +#~ msgstr "" + +#~ msgid "" +#~ "[samd_sercom sercom0]\n" +#~ "tx_pin:\n" +#~ "# MOSI pin for SPI communication, or SDA (data) pin for I2C\n" +#~ "# communication. The pin must have a valid pinmux configuration\n" +#~ "# for the given SERCOM peripheral. This parameter must be provided.\n" +#~ "#rx_pin:\n" +#~ "# MISO pin for SPI communication. This pin is not used for I2C\n" +#~ "# communication (I2C uses tx_pin for both sending and receiving).\n" +#~ "# The pin must have a valid pinmux configuration for the given\n" +#~ "# SERCOM peripheral. This parameter is optional.\n" +#~ "clk_pin:\n" +#~ "# CLK pin for SPI communication, or SCL (clock) pin for I2C\n" +#~ "# communication. The pin must have a valid pinmux configuration\n" +#~ "# for the given SERCOM peripheral. This parameter must be provided.\n" +#~ msgstr "" + +#~ msgid "" +#~ "[stepper_x]\n" +#~ "step_pin:\n" +#~ "# Step GPIO pin (triggered high). This parameter must be provided.\n" +#~ "dir_pin:\n" +#~ "# Direction GPIO pin (high indicates positive direction). This\n" +#~ "# parameter must be provided.\n" +#~ "enable_pin:\n" +#~ "# Enable pin (default is enable high; use ! to indicate enable\n" +#~ "# low). If this parameter is not provided then the stepper motor\n" +#~ "# driver must always be enabled.\n" +#~ "rotation_distance:\n" +#~ "# Distance (in mm) that the axis travels with one full rotation of\n" +#~ "# the stepper motor. This parameter must be provided.\n" +#~ "microsteps:\n" +#~ "# The number of microsteps the stepper motor driver uses. This\n" +#~ "# parameter must be provided.\n" +#~ "#full_steps_per_rotation: 200\n" +#~ "# The number of full steps for one rotation of the stepper motor.\n" +#~ "# Set this to 200 for a 1.8 degree stepper motor or set to 400 for a\n" +#~ "# 0.9 degree motor. The default is 200.\n" +#~ "#gear_ratio:\n" +#~ "# The gear ratio if the stepper motor is connected to the axis via a\n" +#~ "# gearbox. For example, one may specify \"5:1\" if a 5 to 1 gearbox is\n" +#~ "# in use. If the axis has multiple gearboxes one may specify a comma\n" +#~ "# separated list of gear ratios (for example, \"57:11, 2:1\"). If a\n" +#~ "# gear_ratio is specified then rotation_distance specifies the\n" +#~ "# distance the axis travels for one full rotation of the final gear.\n" +#~ "# The default is to not use a gear ratio.\n" +#~ "endstop_pin:\n" +#~ "# Endstop switch detection pin. This parameter must be provided for\n" +#~ "# the X, Y, and Z steppers on cartesian style printers.\n" +#~ "#position_min: 0\n" +#~ "# Minimum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. The default is 0mm.\n" +#~ "position_endstop:\n" +#~ "# Location of the endstop (in mm). This parameter must be provided\n" +#~ "# for the X, Y, and Z steppers on cartesian style printers.\n" +#~ "position_max:\n" +#~ "# Maximum valid distance (in mm) the user may command the stepper to\n" +#~ "# move to. This parameter must be provided for the X, Y, and Z\n" +#~ "# steppers on cartesian style printers.\n" +#~ "#homing_speed: 5.0\n" +#~ "# Maximum velocity (in mm/s) of the stepper when homing. The default\n" +#~ "# is 5mm/s.\n" +#~ "#homing_retract_dist: 5.0\n" +#~ "# Distance to backoff (in mm) before homing a second time during\n" +#~ "# homing. Set this to zero to disable the second home. The default\n" +#~ "# is 5mm.\n" +#~ "#homing_retract_speed:\n" +#~ "# Speed to use on the retract move after homing in case this should\n" +#~ "# be different from the homing speed, which is the default for this\n" +#~ "# parameter\n" +#~ "#second_homing_speed:\n" +#~ "# Velocity (in mm/s) of the stepper when performing the second home.\n" +#~ "# The default is homing_speed/2.\n" +#~ "#homing_positive_dir:\n" +#~ "# If true, homing will cause the stepper to move in a positive\n" +#~ "# direction (away from zero); if false, home towards zero. It is\n" +#~ "# better to use the default than to specify this parameter. The\n" +#~ "# default is true if position_endstop is near position_max and false\n" +#~ "# if near position_min.\n" +#~ msgstr "" diff --git a/docs/locales/lt/LC_MESSAGES/G-Codes.po b/docs/locales/lt/LC_MESSAGES/G-Codes.po new file mode 100644 index 0000000000..6b68ccab96 --- /dev/null +++ b/docs/locales/lt/LC_MESSAGES/G-Codes.po @@ -0,0 +1,3322 @@ +# +msgid "" +msgstr "" +"Language: lt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "" +"This document describes the commands that Klipper supports. These are " +"commands that one may enter into the OctoPrint terminal tab." +msgstr "" + +msgid "G-Code commands" +msgstr "" + +msgid "Klipper supports the following standard G-Code commands:" +msgstr "" + +msgid "Move (G0 or G1): `G1 [X] [Y] [Z] [E] [F]`" +msgstr "" + +msgid "Dwell: `G4 P`" +msgstr "" + +msgid "Move to origin: `G28 [X] [Y] [Z]`" +msgstr "" + +msgid "Turn off motors: `M18` or `M84`" +msgstr "" + +msgid "Wait for current moves to finish: `M400`" +msgstr "" + +msgid "Use absolute/relative distances for extrusion: `M82`, `M83`" +msgstr "" + +msgid "Use absolute/relative coordinates: `G90`, `G91`" +msgstr "" + +msgid "Set position: `G92 [X] [Y] [Z] [E]`" +msgstr "" + +msgid "Set speed factor override percentage: `M220 S`" +msgstr "" + +msgid "Set extrude factor override percentage: `M221 S`" +msgstr "" + +msgid "Set acceleration: `M204 S` OR `M204 P T`" +msgstr "" + +msgid "" +"Note: If S is not specified and both P and T are specified, then the " +"acceleration is set to the minimum of P and T. If only one of P or T is " +"specified, the command has no effect." +msgstr "" + +msgid "Get extruder temperature: `M105`" +msgstr "" + +msgid "Set extruder temperature: `M104 [T] [S]`" +msgstr "" + +msgid "Set extruder temperature and wait: `M109 [T] S`" +msgstr "" + +msgid "Note: M109 always waits for temperature to settle at requested value" +msgstr "" + +msgid "Set bed temperature: `M140 [S]`" +msgstr "" + +msgid "Set bed temperature and wait: `M190 S`" +msgstr "" + +msgid "Note: M190 always waits for temperature to settle at requested value" +msgstr "" + +msgid "Set fan speed: `M106 S`" +msgstr "" + +msgid "Turn fan off: `M107`" +msgstr "" + +msgid "Emergency stop: `M112`" +msgstr "" + +msgid "Get current position: `M114`" +msgstr "" + +msgid "Get firmware version: `M115`" +msgstr "" + +msgid "" +"For further details on the above commands see the [RepRap G-Code " +"documentation](http://reprap.org/wiki/G-code)." +msgstr "" + +msgid "" +"If one requires a less common G-Code command then it may be possible to " +"implement it with a custom [gcode_macro config " +"section](Config_Reference.md#gcode_macro). For example, one might use this " +"to implement: `G12`, `G29`, `G30`, `G31`, `M42`, `M80`, `M81`, `T1`, etc." +msgstr "" + +msgid "List SD card: `M20`" +msgstr "" + +msgid "Initialize SD card: `M21`" +msgstr "" + +msgid "Select SD file: `M23 `" +msgstr "" + +msgid "Start/resume SD print: `M24`" +msgstr "" + +msgid "Pause SD print: `M25`" +msgstr "" + +msgid "Set SD position: `M26 S`" +msgstr "" + +msgid "Report SD print status: `M27`" +msgstr "" + +msgid "" +"The following standard G-Code commands are available if a [gcode_arcs config" +" section](Config_Reference.md#gcode_arcs) is enabled:" +msgstr "" + +msgid "Display Message: `M117 `" +msgstr "" + +msgid "Set build percentage: `M73 P`" +msgstr "" + +msgid "Get Endstop Status: `M119` (Use QUERY_ENDSTOPS instead.)" +msgstr "" + +msgid "" +"Klipper uses \"extended\" G-Code commands for general configuration and " +"status. These extended commands all follow a similar format - they start " +"with a command name and may be followed by one or more parameters. For " +"example: `SET_SERVO SERVO=myservo ANGLE=5.3`. In this document, the commands" +" and parameters are shown in uppercase, however they are not case sensitive." +" (So, \"SET_SERVO\" and \"set_servo\" both run the same command.)" +msgstr "" + +msgid "" +"`QUERY_ENDSTOPS`: Probe the axis endstops and report if they are " +"\"triggered\" or in an \"open\" state. This command is typically used to " +"verify that an endstop is working correctly." +msgstr "" + +msgid "" +"`QUERY_ADC [NAME=] [PULLUP=]`: Report the last analog " +"value received for a configured analog pin. If NAME is not provided, the " +"list of available adc names are reported. If PULLUP is provided (as a value " +"in Ohms), the raw analog value along with the equivalent resistance given " +"that pullup is reported." +msgstr "" + +msgid "" +"`SET_GCODE_OFFSET [X=|X_ADJUST=] [Y=|Y_ADJUST=] " +"[Z=|Z_ADJUST=] [MOVE=1 [MOVE_SPEED=]]`: Set a positional" +" offset to apply to future G-Code commands. This is commonly used to " +"virtually change the Z bed offset or to set nozzle XY offsets when switching" +" extruders. For example, if \"SET_GCODE_OFFSET Z=0.2\" is sent, then future " +"G-Code moves will have 0.2mm added to their Z height. If the X_ADJUST style " +"parameters are used, then the adjustment will be added to any existing " +"offset (eg, \"SET_GCODE_OFFSET Z=-0.2\" followed by \"SET_GCODE_OFFSET " +"Z_ADJUST=0.3\" would result in a total Z offset of 0.1). If \"MOVE=1\" is " +"specified then a toolhead move will be issued to apply the given offset " +"(otherwise the offset will take effect on the next absolute G-Code move that" +" specifies the given axis). If \"MOVE_SPEED\" is specified then the toolhead" +" move will be performed with the given speed (in mm/s); otherwise the " +"toolhead move will use the last specified G-Code speed." +msgstr "" + +msgid "" +"`SAVE_GCODE_STATE [NAME=]`: Save the current g-code coordinate " +"parsing state. Saving and restoring the g-code state is useful in scripts " +"and macros. This command saves the current g-code absolute coordinate mode " +"(G90/G91), absolute extrude mode (M82/M83), origin (G92), offset " +"(SET_GCODE_OFFSET), speed override (M220), extruder override (M221), move " +"speed, current XYZ position, and relative extruder \"E\" position. If NAME " +"is provided it allows one to name the saved state to the given string. If " +"NAME is not provided it defaults to \"default\"." +msgstr "" + +msgid "" +"`RESTORE_GCODE_STATE [NAME=] [MOVE=1 [MOVE_SPEED=]]`: " +"Restore a state previously saved via SAVE_GCODE_STATE. If \"MOVE=1\" is " +"specified then a toolhead move will be issued to move back to the previous " +"XYZ position. If \"MOVE_SPEED\" is specified then the toolhead move will be " +"performed with the given speed (in mm/s); otherwise the toolhead move will " +"use the restored g-code speed." +msgstr "" + +msgid "" +"`PID_CALIBRATE HEATER= TARGET= [WRITE_FILE=1]`: " +"Perform a PID calibration test. The specified heater will be enabled until " +"the specified target temperature is reached, and then the heater will be " +"turned off and on for several cycles. If the WRITE_FILE parameter is " +"enabled, then the file /tmp/heattest.txt will be created with a log of all " +"temperature samples taken during the test." +msgstr "" + +msgid "`TURN_OFF_HEATERS`: Turn off all heaters." +msgstr "" + +msgid "" +"`TEMPERATURE_WAIT SENSOR= [MINIMUM=] " +"[MAXIMUM=]`: Wait until the given temperature sensor is at or above " +"the supplied MINIMUM and/or at or below the supplied MAXIMUM." +msgstr "" + +msgid "" +"`SET_VELOCITY_LIMIT [VELOCITY=] [ACCEL=] " +"[ACCEL_TO_DECEL=] [SQUARE_CORNER_VELOCITY=]`: Modify the " +"printer's velocity limits." +msgstr "" + +msgid "" +"`SET_HEATER_TEMPERATURE HEATER= [TARGET=]`:" +" Sets the target temperature for a heater. If a target temperature is not " +"supplied, the target is 0." +msgstr "" + +msgid "" +"`SET_STEPPER_ENABLE STEPPER= ENABLE=[0|1]`: Enable or disable " +"only the given stepper. This is a diagnostic and debugging tool and must be " +"used with care. Disabling an axis motor does not reset the homing " +"information. Manually moving a disabled stepper may cause the machine to " +"operate the motor outside of safe limits. This can lead to damage to axis " +"components, hot ends, and print surface." +msgstr "" + +msgid "" +"`STEPPER_BUZZ STEPPER=`: Move the given stepper forward one mm " +"and then backward one mm, repeated 10 times. This is a diagnostic tool to " +"help verify stepper connectivity." +msgstr "" + +msgid "" +"`MANUAL_PROBE [SPEED=]`: Run a helper script useful for measuring the" +" height of the nozzle at a given location. If SPEED is specified, it sets " +"the speed of TESTZ commands (the default is 5mm/s). During a manual probe, " +"the following additional commands are available:" +msgstr "" + +msgid "" +"`ACCEPT`: This command accepts the current Z position and concludes the " +"manual probing tool." +msgstr "" + +msgid "`ABORT`: This command terminates the manual probing tool." +msgstr "" + +msgid "" +"`TESTZ Z=`: This command moves the nozzle up or down by the amount " +"specified in \"value\". For example, `TESTZ Z=-.1` would move the nozzle " +"down .1mm while `TESTZ Z=.1` would move the nozzle up .1mm. The value may " +"also be `+`, `-`, `++`, or `--` to move the nozzle up or down an amount " +"relative to previous attempts." +msgstr "" + +msgid "" +"`Z_ENDSTOP_CALIBRATE [SPEED=]`: Run a helper script useful for " +"calibrating a Z position_endstop config setting. See the MANUAL_PROBE " +"command for details on the parameters and the additional commands available " +"while the tool is active." +msgstr "" + +msgid "" +"`SET_DISPLAY_GROUP [DISPLAY=] GROUP=`: Set the active " +"display group of an lcd display. This allows to define multiple display data" +" groups in the config, e.g. `[display_data ]` and " +"switch between them using this extended gcode command. If DISPLAY is not " +"specified it defaults to \"display\" (the primary display)." +msgstr "" + +msgid "" +"`SET_IDLE_TIMEOUT [TIMEOUT=]`: Allows the user to set the idle " +"timeout (in seconds)." +msgstr "" + +msgid "" +"`RESTART`: This will cause the host software to reload its config and " +"perform an internal reset. This command will not clear error state from the " +"micro-controller (see FIRMWARE_RESTART) nor will it load new software (see " +"[the FAQ](FAQ.md#how-do-i-upgrade-to-the-latest-software))." +msgstr "" + +msgid "" +"`FIRMWARE_RESTART`: This is similar to a RESTART command, but it also clears" +" any error state from the micro-controller." +msgstr "" + +msgid "" +"`SAVE_CONFIG`: This command will overwrite the main printer config file and " +"restart the host software. This command is used in conjunction with other " +"calibration commands to store the results of calibration tests." +msgstr "" + +msgid "`STATUS`: Report the Klipper host software status." +msgstr "" + +msgid "`HELP`: Report the list of available extended G-Code commands." +msgstr "" + +msgid "" +"`SET_GCODE_VARIABLE MACRO= VARIABLE= VALUE=`: This " +"command allows one to change the value of a gcode_macro variable at run-" +"time. The provided VALUE is parsed as a Python literal." +msgstr "" + +msgid "" +"`SET_SERVO SERVO=config_name [ANGLE= | WIDTH=]`: Set the " +"servo position to the given angle (in degrees) or pulse width (in seconds). " +"Use `WIDTH=0` to disable the servo output." +msgstr "" + +msgid "" +"`MANUAL_STEPPER STEPPER=config_name [ENABLE=[0|1]] [SET_POSITION=] " +"[SPEED=] [ACCEL=] [MOVE= [STOP_ON_ENDSTOP=[1|2|-1|-2]] " +"[SYNC=0]]`: This command will alter the state of the stepper. Use the ENABLE" +" parameter to enable/disable the stepper. Use the SET_POSITION parameter to " +"force the stepper to think it is at the given position. Use the MOVE " +"parameter to request a movement to the given position. If SPEED and/or ACCEL" +" is specified then the given values will be used instead of the defaults " +"specified in the config file. If an ACCEL of zero is specified then no " +"acceleration will be performed. If STOP_ON_ENDSTOP=1 is specified then the " +"move will end early should the endstop report as triggered (use " +"STOP_ON_ENDSTOP=2 to complete the move without error even if the endstop " +"does not trigger, use -1 or -2 to stop when the endstop reports not " +"triggered). Normally future G-Code commands will be scheduled to run after " +"the stepper move completes, however if a manual stepper move uses SYNC=0 " +"then future G-Code movement commands may run in parallel with the stepper " +"movement." +msgstr "" + +msgid "" +"`PROBE [PROBE_SPEED=] [LIFT_SPEED=] [SAMPLES=] " +"[SAMPLE_RETRACT_DIST=] [SAMPLES_TOLERANCE=] " +"[SAMPLES_TOLERANCE_RETRIES=] [SAMPLES_RESULT=median|average]`: Move " +"the nozzle downwards until the probe triggers. If any of the optional " +"parameters are provided they override their equivalent setting in the [probe" +" config section](Config_Reference.md#probe)." +msgstr "" + +msgid "" +"`QUERY_PROBE`: Report the current status of the probe (\"triggered\" or " +"\"open\")." +msgstr "" + +msgid "" +"`PROBE_ACCURACY [PROBE_SPEED=] [SAMPLES=] " +"[SAMPLE_RETRACT_DIST=]`: Calculate the maximum, minimum, average, " +"median, and standard deviation of multiple probe samples. By default, 10 " +"SAMPLES are taken. Otherwise the optional parameters default to their " +"equivalent setting in the probe config section." +msgstr "" + +msgid "" +"`PROBE_CALIBRATE [SPEED=] [=]`: Run a helper " +"script useful for calibrating the probe's z_offset. See the PROBE command " +"for details on the optional probe parameters. See the MANUAL_PROBE command " +"for details on the SPEED parameter and the additional commands available " +"while the tool is active. Please note, the PROBE_CALIBRATE command uses the " +"speed variable to move in XY direction as well as Z." +msgstr "" + +msgid "" +"`BLTOUCH_STORE MODE=`: This stores an output mode in the EEPROM" +" of a BLTouch V3.1 Available output_modes are: `5V`, `OD`" +msgstr "" + +msgid "" +"`DELTA_ANALYZE`: This command is used during enhanced delta calibration. See" +" [Delta Calibrate](Delta_Calibrate.md) for details." +msgstr "" + +msgid "" +"`BED_MESH_MAP`: Like to BED_MESH_OUTPUT, this command prints the current " +"state of the mesh to the terminal. Instead of printing the values in a human" +" readable format, the state is serialized in json format. This allows " +"octoprint plugins to easily capture the data and generate height maps " +"approximating the bed's surface." +msgstr "" + +msgid "" +"`BED_MESH_CLEAR`: This command clears the mesh and removes all z adjustment." +" It is recommended to put this in your end-gcode." +msgstr "" + +msgid "" +"`BED_MESH_OFFSET [X=] [Y=]`: Applies X and/or Y offsets to the" +" mesh lookup. This is useful for printers with independent extruders, as an " +"offset is necessary to produce correct Z adjustment after a tool change." +msgstr "" + +msgid "" +"`BED_SCREWS_ADJUST`: This command will invoke the bed screws adjustment " +"tool. It will command the nozzle to different locations (as defined in the " +"config file) and allow one to make adjustments to the bed screws so that the" +" bed is a constant distance from the nozzle." +msgstr "" + +msgid "" +"`ENDSTOP_PHASE_CALIBRATE [STEPPER=]`: If no STEPPER parameter " +"is provided then this command will reports statistics on endstop stepper " +"phases during past homing operations. When a STEPPER parameter is provided " +"it arranges for the given endstop phase setting to be written to the config " +"file (in conjunction with the SAVE_CONFIG command)." +msgstr "" + +msgid "" +"`FORCE_MOVE STEPPER= DISTANCE= VELOCITY= " +"[ACCEL=]`: This command will forcibly move the given stepper the " +"given distance (in mm) at the given constant velocity (in mm/s). If ACCEL is" +" specified and is greater than zero, then the given acceleration (in mm/s^2)" +" will be used; otherwise no acceleration is performed. No boundary checks " +"are performed; no kinematic updates are made; other parallel steppers on an " +"axis will not be moved. Use caution as an incorrect command could cause " +"damage! Using this command will almost certainly place the low-level " +"kinematics in an incorrect state; issue a G28 afterwards to reset the " +"kinematics. This command is intended for low-level diagnostics and " +"debugging." +msgstr "" + +msgid "" +"`SET_KINEMATIC_POSITION [X=] [Y=] [Z=]`: Force the low-" +"level kinematic code to believe the toolhead is at the given cartesian " +"position. This is a diagnostic and debugging command; use SET_GCODE_OFFSET " +"and/or G92 for regular axis transformations. If an axis is not specified " +"then it will default to the position that the head was last commanded to. " +"Setting an incorrect or invalid position may lead to internal software " +"errors. This command may invalidate future boundary checks; issue a G28 " +"afterwards to reset the kinematics." +msgstr "" + +msgid "`SDCARD_LOOP_END`: End a looped section in the SD print." +msgstr "" + +msgid "" +"`SDCARD_LOOP_DESIST`: Complete existing loops without further iterations." +msgstr "" + +msgid "" +"`M118 `: echo the message prepended with the configured default " +"prefix (or `echo: ` if no prefix is configured)." +msgstr "" + +msgid "" +"`RESPOND MSG=\"\"`: echo the message prepended with the configured " +"default prefix (or `echo: ` if no prefix is configured)." +msgstr "" + +msgid "" +"`RESPOND TYPE=echo MSG=\"\"`: echo the message prepended with " +"`echo: `." +msgstr "" + +msgid "" +"`RESPOND TYPE=error MSG=\"\"`: echo the message prepended with `!! " +"`." +msgstr "" + +msgid "" +"`RESPOND PREFIX= MSG=\"\"`: echo the message prepended with" +" ``. (The `PREFIX` parameter will take priority over the `TYPE` " +"parameter)" +msgstr "" + +msgid "" +"The following commands are available when the [pause_resume config " +"section](Config_Reference.md#pause_resume) is enabled:" +msgstr "" + +msgid "" +"`PAUSE`: Pauses the current print. The current position is captured for " +"restoration upon resume." +msgstr "" + +msgid "" +"`RESUME [VELOCITY=]`: Resumes the print from a pause, first restoring" +" the previously captured position. The VELOCITY parameter determines the " +"speed at which the tool should return to the original captured position." +msgstr "" + +msgid "" +"`CLEAR_PAUSE`: Clears the current paused state without resuming the print. " +"This is useful if one decides to cancel a print after a PAUSE. It is " +"recommended to add this to your start gcode to make sure the paused state is" +" fresh for each print." +msgstr "" + +msgid "`CANCEL_PRINT`: Cancels the current print." +msgstr "" + +msgid "" +"`SET_FILAMENT_SENSOR SENSOR= ENABLE=[0|1]`: Sets the filament " +"sensor on/off. If ENABLE is set to 0, the filament sensor will be disabled, " +"if set to 1 it is enabled." +msgstr "" + +msgid "" +"`SET_RETRACTION [RETRACT_LENGTH=] [RETRACT_SPEED=] " +"[UNRETRACT_EXTRA_LENGTH=] [UNRETRACT_SPEED=]`: Adjust the " +"parameters used by firmware retraction. RETRACT_LENGTH determines the length" +" of filament to retract and unretract. The speed of retraction is adjusted " +"via RETRACT_SPEED, and is typically set relatively high. The speed of " +"unretraction is adjusted via UNRETRACT_SPEED, and is not particularly " +"critical, although often lower than RETRACT_SPEED. In some cases it is " +"useful to add a small amount of additional length on unretraction, and this " +"is set via UNRETRACT_EXTRA_LENGTH. SET_RETRACTION is commonly set as part of" +" slicer per-filament configuration, as different filaments require different" +" parameter settings." +msgstr "" + +msgid "" +"`GET_RETRACTION`: Queries the current parameters used by firmware retraction" +" and displays them on the terminal." +msgstr "" + +msgid "" +"`G10`: Retracts the extruder using the currently configured parameters." +msgstr "" + +msgid "" +"`G11`: Unretracts the extruder using the currently configured parameters." +msgstr "" + +msgid "" +"`SET_SKEW [XY=] [XZ=] " +"[YZ=] [CLEAR=<0|1>]`: Configures the [skew_correction] module with" +" measurements (in mm) taken from a calibration print. One may enter " +"measurements for any combination of planes, planes not entered will retain " +"their current value. If `CLEAR=1` is entered then all skew correction will " +"be disabled." +msgstr "" + +msgid "" +"`GET_CURRENT_SKEW`: Reports the current printer skew for each plane in both " +"radians and degrees. The skew is calculated based on parameters provided via" +" the `SET_SKEW` gcode." +msgstr "" + +msgid "" +"`UPDATE_DELAYED_GCODE [ID=] [DURATION=]`: Updates the delay " +"duration for the identified [delayed_gcode] and starts the timer for gcode " +"execution. A value of 0 will cancel a pending delayed gcode from executing." +msgstr "" + +msgid "" +"`SAVE_VARIABLE VARIABLE= VALUE=`: Saves the variable to disk so" +" that it can be used across restarts. All stored variables are loaded into " +"the `printer.save_variables.variables` dict at startup and can be used in " +"gcode macros. The provided VALUE is parsed as a Python literal." +msgstr "" + +msgid "" +"`SET_INPUT_SHAPER [SHAPER_FREQ_X=] " +"[SHAPER_FREQ_Y=] [DAMPING_RATIO_X=] " +"[DAMPING_RATIO_Y=] [SHAPER_TYPE=] " +"[SHAPER_TYPE_X=] [SHAPER_TYPE_Y=]`: Modify " +"input shaper parameters. Note that SHAPER_TYPE parameter resets input shaper" +" for both X and Y axes even if different shaper types have been configured " +"in [input_shaper] section. SHAPER_TYPE cannot be used together with either " +"of SHAPER_TYPE_X and SHAPER_TYPE_Y parameters. See [config " +"reference](Config_Reference.md#input_shaper) for more details on each of " +"these parameters." +msgstr "" + +msgid "" +"`MEASURE_AXES_NOISE`: Measures and outputs the noise for all axes of all " +"enabled accelerometer chips." +msgstr "" + +msgid "" +"`PALETTE_CONNECT`: This command initializes the connection with the Palette " +"2." +msgstr "" + +msgid "`PALETTE_DISCONNECT`: This command disconnects from the Palette 2." +msgstr "" + +msgid "" +"`PALETTE_CLEAR`: This command instructs the Palette 2 to clear all of the " +"input and output paths of filament." +msgstr "" + +msgid "" +"`PALETTE_CUT`: This command instructs the Palette 2 to cut the filament " +"currently loaded in the splice core." +msgstr "" + +msgid "" +"`PALETTE_SMART_LOAD`: This command start the smart load sequence on the " +"Palette 2. Filament is loaded automatically by extruding it the distance " +"calibrated on the device for the printer, and instructs the Palette 2 once " +"the loading has been completed. This command is the same as pressing **Smart" +" Load** directly on the Palette 2 screen after the filament load is " +"complete." +msgstr "" + +msgid "" +"Palette prints work by embedding special OCodes (Omega Codes) in the GCode " +"file:" +msgstr "" + +msgid "" +"`O1`...`O32`: These codes are read from the GCode stream and processed by " +"this module and passed to the Palette 2 device." +msgstr "" + +#: docs/G-Codes.md:block 1 (header) +msgid "G-Codes" +msgstr "" + +#: docs/G-Codes.md:block 29 (unordered list) +msgid "" +"`Z_OFFSET_APPLY_ENDSTOP`: Take the current Z Gcode offset (aka, " +"babystepping), and subtract it from the stepper_z endstop_position. This " +"acts to take a frequently used babystepping value, and \"make it " +"permanent\". Requires a `SAVE_CONFIG` to take effect." +msgstr "" + +#: docs/G-Codes.md:block 54 (unordered list) +msgid "" +"`Z_OFFSET_APPLY_PROBE`: Take the current Z Gcode offset (aka, babystepping)," +" and subtract if from the probe's z_offset. This acts to take a frequently " +"used babystepping value, and \"make it permanent\". Requires a `SAVE_CONFIG`" +" to take effect." +msgstr "" + +#: docs/G-Codes.md:block 29 (unordered list) +msgid "" +"`TUNING_TOWER COMMAND= PARAMETER= START= " +"[SKIP=] [FACTOR= [BAND=]] | [STEP_DELTA= " +"STEP_HEIGHT=]`: A tool for tuning a parameter on each Z height during" +" a print. The tool will run the given `COMMAND` with the given `PARAMETER` " +"assigned to a value that varies with `Z` according to a formula. Use " +"`FACTOR` if you will use a ruler or calipers to measure the Z height of the " +"optimum value, or `STEP_DELTA` and `STEP_HEIGHT` if the tuning tower model " +"has bands of discrete values as is common with temperature towers. If " +"`SKIP=` is specified, the tuning process doesn't begin until Z height" +" `` is reached, and below that the value will be set to `START`; in " +"this case, the `z_height` used in the formulas below is actually `max(z - " +"skip, 0)`. There are three possible combinations of options:" +msgstr "" + +#: docs/G-Codes.md:block 120 (unordered list) +msgid "" +"`ACCELEROMETER_MEASURE [CHIP=] [NAME=]`: Starts " +"accelerometer measurements at the requested number of samples per second. If" +" CHIP is not specified it defaults to \"adxl345\". The command works in a " +"start-stop mode: when executed for the first time, it starts the " +"measurements, next execution stops them. The results of measurements are " +"written to a file named `/tmp/adxl345--.csv` where `` is " +"the name of the accelerometer chip (`my_chip_name` from `[adxl345 " +"my_chip_name]`) and `` is the optional NAME parameter. If NAME is not " +"specified it defaults to the current time in \"YYYYMMDD_HHMMSS\" format. If " +"the accelerometer does not have a name in its config section (simply " +"`[adxl345]`) then `` part of the name is not generated." +msgstr "" + +#: docs/G-Codes.md:block 120 (unordered list) +msgid "" +"`ACCELEROMETER_QUERY [CHIP=] [RATE=]`: queries " +"accelerometer for the current value. If CHIP is not specified it defaults to" +" \"adxl345\". If RATE is not specified, the default value is used. This " +"command is useful to test the connection to the ADXL345 accelerometer: one " +"of the returned values should be a free-fall acceleration (+/- some noise of" +" the chip)." +msgstr "" + +#: docs/G-Codes.md:block 105 (unordered list) +msgid "" +"`CALC_MEASURED_SKEW [AC=] [BD=] [AD=]`: " +"Calculates and reports the skew (in radians and degrees) based on a measured" +" print. This can be useful for determining the printer's current skew after " +"correction has been applied. It may also be useful before correction is " +"applied to determine if skew correction is necessary. See [Skew " +"Correction](Skew_Correction.md) for details on skew calibration objects and " +"measurements." +msgstr "" + +#: docs/G-Codes.md:block 63 (unordered list) +msgid "" +"`BED_MESH_OUTPUT PGP=[<0:1>]`: This command outputs the current probed z " +"values and current mesh values to the terminal. If PGP=1 is specified the X," +" Y coordinates generated by bed_mesh, along with their associated indices, " +"will be output to the terminal." +msgstr "" + +#: docs/G-Codes.md:block 9 (header) +msgid "Additional Commands" +msgstr "" + +#: docs/G-Codes.md:block 12 (header) +msgid "[adxl345]" +msgstr "" + +#: docs/G-Codes.md:block 13 (paragraph) +msgid "" +"The following commands are available when an [adxl345 config " +"section](Config_Reference.md#adxl345) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 14 (header) +msgid "ACCELEROMETER_MEASURE" +msgstr "" + +#: docs/G-Codes.md:block 16 (header) +msgid "ACCELEROMETER_QUERY" +msgstr "" + +#: docs/G-Codes.md:block 18 (header) +msgid "ACCELEROMETER_DEBUG_READ" +msgstr "" + +#: docs/G-Codes.md:block 19 (paragraph) +msgid "" +"`ACCELEROMETER_DEBUG_READ [CHIP=] REG=`: queries " +"ADXL345 register \"register\" (e.g. 44 or 0x2C). Can be useful for debugging" +" purposes." +msgstr "" + +#: docs/G-Codes.md:block 20 (header) +msgid "ACCELEROMETER_DEBUG_WRITE" +msgstr "" + +#: docs/G-Codes.md:block 21 (paragraph) +msgid "" +"`ACCELEROMETER_DEBUG_WRITE [CHIP=] REG= VAL=`:" +" Writes raw \"value\" into a register \"register\". Both \"value\" and " +"\"register\" can be a decimal or a hexadecimal integer. Use with care, and " +"refer to ADXL345 data sheet for the reference." +msgstr "" + +#: docs/G-Codes.md:block 22 (header) +msgid "[bed_mesh]" +msgstr "" + +#: docs/G-Codes.md:block 23 (paragraph) +msgid "" +"The following commands are available when the [bed_mesh config " +"section](Config_Reference.md#bed_mesh) is enabled (also see the [bed mesh " +"guide](Bed_Mesh.md))." +msgstr "" + +#: docs/G-Codes.md:block 24 (header) +msgid "BED_MESH_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 26 (header) +msgid "BED_MESH_OUTPUT" +msgstr "" + +#: docs/G-Codes.md:block 28 (header) +msgid "BED_MESH_MAP" +msgstr "" + +#: docs/G-Codes.md:block 30 (header) +msgid "BED_MESH_CLEAR" +msgstr "" + +#: docs/G-Codes.md:block 32 (header) +msgid "BED_MESH_PROFILE" +msgstr "" + +#: docs/G-Codes.md:block 33 (paragraph) +msgid "" +"`BED_MESH_PROFILE LOAD= SAVE= REMOVE=`: This command " +"provides profile management for mesh state. LOAD will restore the mesh state" +" from the profile matching the supplied name. SAVE will save the current " +"mesh state to a profile matching the supplied name. Remove will delete the " +"profile matching the supplied name from persistent memory. Note that after " +"SAVE or REMOVE operations have been run the SAVE_CONFIG gcode must be run to" +" make the changes to persistent memory permanent." +msgstr "" + +#: docs/G-Codes.md:block 34 (header) +msgid "BED_MESH_OFFSET" +msgstr "" + +#: docs/G-Codes.md:block 36 (header) +msgid "[bed_screws]" +msgstr "" + +#: docs/G-Codes.md:block 37 (paragraph) +msgid "" +"The following commands are available when the [bed_screws config " +"section](Config_Reference.md#bed_screws) is enabled (also see the [manual " +"level guide](Manual_Level.md#adjusting-bed-leveling-screws))." +msgstr "" + +#: docs/G-Codes.md:block 38 (header) +msgid "BED_SCREWS_ADJUST" +msgstr "" + +#: docs/G-Codes.md:block 40 (header) +msgid "[bed_tilt]" +msgstr "" + +#: docs/G-Codes.md:block 41 (paragraph) +msgid "" +"The following commands are available when the [bed_tilt config " +"section](Config_Reference.md#bed_tilt) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 42 (header) +msgid "BED_TILT_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 44 (header) +msgid "[bltouch]" +msgstr "" + +#: docs/G-Codes.md:block 45 (paragraph) +msgid "" +"The following command is available when a [bltouch config " +"section](Config_Reference.md#bltouch) is enabled (also see the [BL-Touch " +"guide](BLTouch.md))." +msgstr "" + +#: docs/G-Codes.md:block 46 (header) +msgid "BLTOUCH_DEBUG" +msgstr "" + +#: docs/G-Codes.md:block 47 (paragraph) +msgid "" +"`BLTOUCH_DEBUG COMMAND=`: This sends a command to the BLTouch. It " +"may be useful for debugging. Available commands are: `pin_down`, " +"`touch_mode`, `pin_up`, `self_test`, `reset`. A BL-Touch V3.0 or V3.1 may " +"also support `set_5V_output_mode`, `set_OD_output_mode`, `output_mode_store`" +" commands." +msgstr "" + +#: docs/G-Codes.md:block 48 (header) +msgid "BLTOUCH_STORE" +msgstr "" + +#: docs/G-Codes.md:block 50 (header) +msgid "[configfile]" +msgstr "" + +#: docs/G-Codes.md:block 51 (paragraph) +msgid "The configfile module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 52 (header) +msgid "SAVE_CONFIG" +msgstr "" + +#: docs/G-Codes.md:block 54 (header) +msgid "[delayed_gcode]" +msgstr "" + +#: docs/G-Codes.md:block 55 (paragraph) +msgid "" +"The following command is enabled if a [delayed_gcode config " +"section](Config_Reference.md#delayed_gcode) has been enabled (also see the " +"[template guide](Command_Templates.md#delayed-gcodes))." +msgstr "" + +#: docs/G-Codes.md:block 56 (header) +msgid "UPDATE_DELAYED_GCODE" +msgstr "" + +#: docs/G-Codes.md:block 58 (header) +msgid "[delta_calibrate]" +msgstr "" + +#: docs/G-Codes.md:block 59 (paragraph) +msgid "" +"The following commands are available when the [delta_calibrate config " +"section](Config_Reference.md#linear-delta-kinematics) is enabled (also see " +"the [delta calibrate guide](Delta_Calibrate.md))." +msgstr "" + +#: docs/G-Codes.md:block 60 (header) +msgid "DELTA_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 62 (header) +msgid "DELTA_ANALYZE" +msgstr "" + +#: docs/G-Codes.md:block 64 (header) +msgid "[display]" +msgstr "" + +#: docs/G-Codes.md:block 65 (paragraph) +msgid "" +"The following command is available when a [display config " +"section](Config_Reference.md#gcode_macro) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 66 (header) +msgid "SET_DISPLAY_GROUP" +msgstr "" + +#: docs/G-Codes.md:block 68 (header) +msgid "[display_status]" +msgstr "" + +#: docs/G-Codes.md:block 69 (paragraph) +msgid "" +"The display_status module is automatically loaded if a [display config " +"section](Config_Reference.md#display) is enabled. It provides the following " +"standard G-Code commands:" +msgstr "" + +#: docs/G-Codes.md:block 71 (header) +msgid "[dual_carriage]" +msgstr "" + +#: docs/G-Codes.md:block 72 (paragraph) +msgid "" +"The following command is available when the [dual_carriage config " +"section](Config_Reference.md#dual_carriage) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 73 (header) +msgid "SET_DUAL_CARRIAGE" +msgstr "" + +#: docs/G-Codes.md:block 75 (header) +msgid "[endstop_phase]" +msgstr "" + +#: docs/G-Codes.md:block 76 (paragraph) +msgid "" +"The following commands are available when an [endstop_phase config " +"section](Config_Reference.md#endstop_phase) is enabled (also see the " +"[endstop phase guide](Endstop_Phase.md))." +msgstr "" + +#: docs/G-Codes.md:block 77 (header) +msgid "ENDSTOP_PHASE_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 79 (header) +msgid "[extruder]" +msgstr "" + +#: docs/G-Codes.md:block 80 (paragraph) +msgid "" +"The following commands are available if an [extruder config " +"section](Config_Reference.md#extruder) is enabled:" +msgstr "" + +#: docs/G-Codes.md:block 81 (header) +msgid "ACTIVATE_EXTRUDER" +msgstr "" + +#: docs/G-Codes.md:block 83 (header) +msgid "SET_PRESSURE_ADVANCE" +msgstr "" + +#: docs/G-Codes.md:block 85 (header) +msgid "SET_EXTRUDER_ROTATION_DISTANCE" +msgstr "" + +#: docs/G-Codes.md:block 87 (header) +msgid "SYNC_EXTRUDER_MOTION" +msgstr "" + +#: docs/G-Codes.md:block 89 (header) +msgid "SET_EXTRUDER_STEP_DISTANCE" +msgstr "" + +#: docs/G-Codes.md:block 90 (paragraph) +msgid "This command is deprecated and will be removed in the near future." +msgstr "" + +#: docs/G-Codes.md:block 91 (header) +msgid "SYNC_STEPPER_TO_EXTRUDER" +msgstr "" + +#: docs/G-Codes.md:block 93 (header) +msgid "[fan_generic]" +msgstr "" + +#: docs/G-Codes.md:block 94 (paragraph) +msgid "" +"The following command is available when a [fan_generic config " +"section](Config_Reference.md#fan_generic) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 95 (header) +msgid "SET_FAN_SPEED" +msgstr "" + +#: docs/G-Codes.md:block 96 (paragraph) +msgid "" +"`SET_FAN_SPEED FAN=config_name SPEED=` This command sets the speed of" +" a fan. \"speed\" must be between 0.0 and 1.0." +msgstr "" + +#: docs/G-Codes.md:block 97 (header) +msgid "[firmware_retraction]" +msgstr "" + +#: docs/G-Codes.md:block 98 (paragraph) +msgid "" +"The following standard G-Code commands are available when the " +"[firmware_retraction config " +"section](Config_Reference.md#firmware_retraction) is enabled. These commands" +" allow you to utilize the firmware retraction feature available in many " +"slicers, to reduce stringing during non-extrusion moves from one part of the" +" print to another. Appropriately configuring pressure advance reduces the " +"length of retraction required." +msgstr "" + +#: docs/G-Codes.md:block 100 (paragraph) +msgid "The following additional commands are also available." +msgstr "" + +#: docs/G-Codes.md:block 101 (header) +msgid "SET_RETRACTION" +msgstr "" + +#: docs/G-Codes.md:block 103 (header) +msgid "GET_RETRACTION" +msgstr "" + +#: docs/G-Codes.md:block 105 (header) +msgid "[filament_switch_sensor]" +msgstr "" + +#: docs/G-Codes.md:block 106 (paragraph) +msgid "" +"The following command is available when a " +"[filament_switch_sensor](Config_Reference.md#filament_switch_sensor) or " +"[filament_motion_sensor](Config_Reference.md#filament_motion_sensor) config " +"section is enabled." +msgstr "" + +#: docs/G-Codes.md:block 107 (header) +msgid "QUERY_FILAMENT_SENSOR" +msgstr "" + +#: docs/G-Codes.md:block 108 (paragraph) +msgid "" +"`QUERY_FILAMENT_SENSOR SENSOR=`: Queries the current status of " +"the filament sensor. The data displayed on the terminal will depend on the " +"sensor type defined in the configuration." +msgstr "" + +#: docs/G-Codes.md:block 109 (header) +msgid "SET_FILAMENT_SENSOR" +msgstr "" + +#: docs/G-Codes.md:block 114 (header) +msgid "[force_move]" +msgstr "" + +#: docs/G-Codes.md:block 116 (header) +msgid "STEPPER_BUZZ" +msgstr "" + +#: docs/G-Codes.md:block 118 (header) +msgid "FORCE_MOVE" +msgstr "" + +#: docs/G-Codes.md:block 120 (header) +msgid "SET_KINEMATIC_POSITION" +msgstr "" + +#: docs/G-Codes.md:block 122 (header) +msgid "[gcode]" +msgstr "" + +#: docs/G-Codes.md:block 123 (paragraph) +msgid "The gcode module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 124 (header) +msgid "RESTART" +msgstr "" + +#: docs/G-Codes.md:block 126 (header) +msgid "FIRMWARE_RESTART" +msgstr "" + +#: docs/G-Codes.md:block 128 (header) +msgid "STATUS" +msgstr "" + +#: docs/G-Codes.md:block 130 (header) +msgid "HELP" +msgstr "" + +#: docs/G-Codes.md:block 132 (header) +msgid "[gcode_arcs]" +msgstr "" + +#: docs/G-Codes.md:block 135 (header) +msgid "[gcode_macro]" +msgstr "" + +#: docs/G-Codes.md:block 136 (paragraph) +msgid "" +"The following command is available when a [gcode_macro config " +"section](Config_Reference.md#gcode_macro) is enabled (also see the [command " +"templates guide](Command_Templates.md))." +msgstr "" + +#: docs/G-Codes.md:block 137 (header) +msgid "SET_GCODE_VARIABLE" +msgstr "" + +#: docs/G-Codes.md:block 139 (header) +msgid "[gcode_move]" +msgstr "" + +#: docs/G-Codes.md:block 140 (paragraph) +msgid "The gcode_move module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 141 (header) +msgid "GET_POSITION" +msgstr "" + +#: docs/G-Codes.md:block 143 (header) +msgid "SET_GCODE_OFFSET" +msgstr "" + +#: docs/G-Codes.md:block 145 (header) +msgid "SAVE_GCODE_STATE" +msgstr "" + +#: docs/G-Codes.md:block 147 (header) +msgid "RESTORE_GCODE_STATE" +msgstr "" + +#: docs/G-Codes.md:block 149 (header) +msgid "[hall_filament_width_sensor]" +msgstr "" + +#: docs/G-Codes.md:block 150 (paragraph) +msgid "" +"The following commands are available when the [tsl1401cl filament width " +"sensor config section](Config_Reference.md#tsl1401cl_filament_width_sensor) " +"or [hall filament width sensor config " +"section](Config_Reference.md#hall_filament_width_sensor) is enabled (also " +"see [TSLl401CL Filament Width Sensor](TSL1401CL_Filament_Width_Sensor.md) " +"and [Hall Filament Width Sensor](Hall_Filament_Width_Sensor.md)):" +msgstr "" + +#: docs/G-Codes.md:block 151 (header) +msgid "QUERY_FILAMENT_WIDTH" +msgstr "" + +#: docs/G-Codes.md:block 152 (paragraph) +msgid "`QUERY_FILAMENT_WIDTH`: Return the current measured filament width." +msgstr "" + +#: docs/G-Codes.md:block 153 (header) +msgid "RESET_FILAMENT_WIDTH_SENSOR" +msgstr "" + +#: docs/G-Codes.md:block 154 (paragraph) +msgid "" +"`RESET_FILAMENT_WIDTH_SENSOR`: Clear all sensor readings. Helpful after " +"filament change." +msgstr "" + +#: docs/G-Codes.md:block 155 (header) +msgid "DISABLE_FILAMENT_WIDTH_SENSOR" +msgstr "" + +#: docs/G-Codes.md:block 156 (paragraph) +msgid "" +"`DISABLE_FILAMENT_WIDTH_SENSOR`: Turn off the filament width sensor and stop" +" using it for flow control." +msgstr "" + +#: docs/G-Codes.md:block 157 (header) +msgid "ENABLE_FILAMENT_WIDTH_SENSOR" +msgstr "" + +#: docs/G-Codes.md:block 158 (paragraph) +msgid "" +"`ENABLE_FILAMENT_WIDTH_SENSOR`: Turn on the filament width sensor and start " +"using it for flow control." +msgstr "" + +#: docs/G-Codes.md:block 159 (header) +msgid "QUERY_RAW_FILAMENT_WIDTH" +msgstr "" + +#: docs/G-Codes.md:block 160 (paragraph) +msgid "" +"`QUERY_RAW_FILAMENT_WIDTH`: Return the current ADC channel readings and RAW " +"sensor value for calibration points." +msgstr "" + +#: docs/G-Codes.md:block 161 (header) +msgid "ENABLE_FILAMENT_WIDTH_LOG" +msgstr "" + +#: docs/G-Codes.md:block 162 (paragraph) +msgid "`ENABLE_FILAMENT_WIDTH_LOG`: Turn on diameter logging." +msgstr "" + +#: docs/G-Codes.md:block 163 (header) +msgid "DISABLE_FILAMENT_WIDTH_LOG" +msgstr "" + +#: docs/G-Codes.md:block 164 (paragraph) +msgid "`DISABLE_FILAMENT_WIDTH_LOG`: Turn off diameter logging." +msgstr "" + +#: docs/G-Codes.md:block 165 (header) +msgid "[heaters]" +msgstr "" + +#: docs/G-Codes.md:block 166 (paragraph) +msgid "" +"The heaters module is automatically loaded if a heater is defined in the " +"config file." +msgstr "" + +#: docs/G-Codes.md:block 167 (header) +msgid "TURN_OFF_HEATERS" +msgstr "" + +#: docs/G-Codes.md:block 169 (header) +msgid "TEMPERATURE_WAIT" +msgstr "" + +#: docs/G-Codes.md:block 171 (header) +msgid "SET_HEATER_TEMPERATURE" +msgstr "" + +#: docs/G-Codes.md:block 173 (header) +msgid "[idle_timeout]" +msgstr "" + +#: docs/G-Codes.md:block 174 (paragraph) +msgid "The idle_timeout module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 175 (header) +msgid "SET_IDLE_TIMEOUT" +msgstr "" + +#: docs/G-Codes.md:block 177 (header) +msgid "[input_shaper]" +msgstr "" + +#: docs/G-Codes.md:block 178 (paragraph) +msgid "" +"The following command is enabled if an [input_shaper config " +"section](Config_Reference.md#input_shaper) has been enabled (also see the " +"[resonance compensation guide](Resonance_Compensation.md))." +msgstr "" + +#: docs/G-Codes.md:block 179 (header) +msgid "SET_INPUT_SHAPER" +msgstr "" + +#: docs/G-Codes.md:block 181 (header) +msgid "[manual_probe]" +msgstr "" + +#: docs/G-Codes.md:block 182 (paragraph) +msgid "The manual_probe module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 183 (header) +msgid "MANUAL_PROBE" +msgstr "" + +#: docs/G-Codes.md:block 186 (header) +msgid "Z_ENDSTOP_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 188 (header) +msgid "Z_OFFSET_APPLY_ENDSTOP" +msgstr "" + +#: docs/G-Codes.md:block 190 (header) +msgid "[manual_stepper]" +msgstr "" + +#: docs/G-Codes.md:block 191 (paragraph) +msgid "" +"The following command is available when a [manual_stepper config " +"section](Config_Reference.md#manual_stepper) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 192 (header) +msgid "MANUAL_STEPPER" +msgstr "" + +#: docs/G-Codes.md:block 196 (header) +msgid "SET_LED" +msgstr "" + +#: docs/G-Codes.md:block 198 (header) +msgid "[output_pin]" +msgstr "" + +#: docs/G-Codes.md:block 199 (paragraph) +msgid "" +"The following command is available when an [output_pin config " +"section](Config_Reference.md#output_pin) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 200 (header) +msgid "SET_PIN" +msgstr "" + +#: docs/G-Codes.md:block 202 (header) +msgid "[palette2]" +msgstr "" + +#: docs/G-Codes.md:block 203 (paragraph) +msgid "" +"The following commands are available when the [palette2 config " +"section](Config_Reference.md#palette2) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 207 (header) +msgid "PALETTE_CONNECT" +msgstr "" + +#: docs/G-Codes.md:block 209 (header) +msgid "PALETTE_DISCONNECT" +msgstr "" + +#: docs/G-Codes.md:block 211 (header) +msgid "PALETTE_CLEAR" +msgstr "" + +#: docs/G-Codes.md:block 213 (header) +msgid "PALETTE_CUT" +msgstr "" + +#: docs/G-Codes.md:block 215 (header) +msgid "PALETTE_SMART_LOAD" +msgstr "" + +#: docs/G-Codes.md:block 217 (header) +msgid "[pid_calibrate]" +msgstr "" + +#: docs/G-Codes.md:block 218 (paragraph) +msgid "" +"The pid_calibrate module is automatically loaded if a heater is defined in " +"the config file." +msgstr "" + +#: docs/G-Codes.md:block 219 (header) +msgid "PID_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 221 (header) +msgid "[pause_resume]" +msgstr "" + +#: docs/G-Codes.md:block 223 (header) +msgid "PAUSE" +msgstr "" + +#: docs/G-Codes.md:block 225 (header) +msgid "RESUME" +msgstr "" + +#: docs/G-Codes.md:block 227 (header) +msgid "CLEAR_PAUSE" +msgstr "" + +#: docs/G-Codes.md:block 229 (header) +msgid "CANCEL_PRINT" +msgstr "" + +#: docs/G-Codes.md:block 231 (header) +msgid "[probe]" +msgstr "" + +#: docs/G-Codes.md:block 232 (paragraph) +msgid "" +"The following commands are available when a [probe config " +"section](Config_Reference.md#probe) or [bltouch config " +"section](Config_Reference.md#bltouch) is enabled (also see the [probe " +"calibrate guide](Probe_Calibrate.md))." +msgstr "" + +#: docs/G-Codes.md:block 233 (header) +msgid "PROBE" +msgstr "" + +#: docs/G-Codes.md:block 235 (header) +msgid "QUERY_PROBE" +msgstr "" + +#: docs/G-Codes.md:block 237 (header) +msgid "PROBE_ACCURACY" +msgstr "" + +#: docs/G-Codes.md:block 239 (header) +msgid "PROBE_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 241 (header) +msgid "Z_OFFSET_APPLY_PROBE" +msgstr "" + +#: docs/G-Codes.md:block 243 (header) +msgid "[query_adc]" +msgstr "" + +#: docs/G-Codes.md:block 245 (header) +msgid "QUERY_ADC" +msgstr "" + +#: docs/G-Codes.md:block 247 (header) +msgid "[query_endstops]" +msgstr "" + +#: docs/G-Codes.md:block 248 (paragraph) +msgid "" +"The query_endstops module is automatically loaded. The following standard " +"G-Code commands are currently available, but using them is not recommended:" +msgstr "" + +#: docs/G-Codes.md:block 250 (header) +msgid "QUERY_ENDSTOPS" +msgstr "" + +#: docs/G-Codes.md:block 252 (header) +msgid "[resonance_tester]" +msgstr "" + +#: docs/G-Codes.md:block 253 (paragraph) +msgid "" +"The following commands are available when a [resonance_tester config " +"section](Config_Reference.md#resonance_tester) is enabled (also see the " +"[measuring resonances guide](Measuring_Resonances.md))." +msgstr "" + +#: docs/G-Codes.md:block 254 (header) +msgid "MEASURE_AXES_NOISE" +msgstr "" + +#: docs/G-Codes.md:block 256 (header) +msgid "TEST_RESONANCES" +msgstr "" + +#: docs/G-Codes.md:block 258 (header) +msgid "SHAPER_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 260 (header) +msgid "[respond]" +msgstr "" + +#: docs/G-Codes.md:block 261 (paragraph) +msgid "" +"The following standard G-Code commands are available when the [respond " +"config section](Config_Reference.md#respond) is enabled:" +msgstr "" + +#: docs/G-Codes.md:block 264 (header) +msgid "RESPOND" +msgstr "" + +#: docs/G-Codes.md:block 265 (unordered list) +msgid "" +"`RESPOND TYPE=command MSG=\"\"`: echo the message prepended with " +"`// `. OctoPrint can be configured to respond to these messages (e.g. " +"`RESPOND TYPE=command MSG=action:pause`)." +msgstr "" + +#: docs/G-Codes.md:block 266 (header) +msgid "[save_variables]" +msgstr "" + +#: docs/G-Codes.md:block 267 (paragraph) +msgid "" +"The following command is enabled if a [save_variables config " +"section](Config_Reference.md#save_variables) has been enabled." +msgstr "" + +#: docs/G-Codes.md:block 268 (header) +msgid "SAVE_VARIABLE" +msgstr "" + +#: docs/G-Codes.md:block 270 (header) +msgid "[screws_tilt_adjust]" +msgstr "" + +#: docs/G-Codes.md:block 271 (paragraph) +msgid "" +"The following commands are available when the [screws_tilt_adjust config " +"section](Config_Reference.md#screws_tilt_adjust) is enabled (also see the " +"[manual level guide](Manual_Level.md#adjusting-bed-leveling-screws-using-" +"the-bed-probe))." +msgstr "" + +#: docs/G-Codes.md:block 272 (header) +msgid "SCREWS_TILT_CALCULATE" +msgstr "" + +#: docs/G-Codes.md:block 274 (header) +msgid "[sdcard_loop]" +msgstr "" + +#: docs/G-Codes.md:block 275 (paragraph) +msgid "" +"When the [sdcard_loop config section](Config_Reference.md#sdcard_loop) is " +"enabled, the following extended commands are available." +msgstr "" + +#: docs/G-Codes.md:block 276 (header) +msgid "SDCARD_LOOP_BEGIN" +msgstr "" + +#: docs/G-Codes.md:block 277 (paragraph) +msgid "" +"`SDCARD_LOOP_BEGIN COUNT=`: Begin a looped section in the SD print. A" +" count of 0 indicates that the section should be looped indefinitely." +msgstr "" + +#: docs/G-Codes.md:block 278 (header) +msgid "SDCARD_LOOP_END" +msgstr "" + +#: docs/G-Codes.md:block 280 (header) +msgid "SDCARD_LOOP_DESIST" +msgstr "" + +#: docs/G-Codes.md:block 282 (header) +msgid "[servo]" +msgstr "" + +#: docs/G-Codes.md:block 283 (paragraph) +msgid "" +"The following commands are available when a [servo config " +"section](Config_Reference.md#servo) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 284 (header) +msgid "SET_SERVO" +msgstr "" + +#: docs/G-Codes.md:block 286 (header) +msgid "[skew_correction]" +msgstr "" + +#: docs/G-Codes.md:block 287 (paragraph) +msgid "" +"The following commands are available when the [skew_correction config " +"section](Config_Reference.md#skew_correction) is enabled (also see the [Skew" +" Correction](Skew_Correction.md) guide)." +msgstr "" + +#: docs/G-Codes.md:block 288 (header) +msgid "SET_SKEW" +msgstr "" + +#: docs/G-Codes.md:block 290 (header) +msgid "GET_CURRENT_SKEW" +msgstr "" + +#: docs/G-Codes.md:block 292 (header) +msgid "CALC_MEASURED_SKEW" +msgstr "" + +#: docs/G-Codes.md:block 294 (header) +msgid "SKEW_PROFILE" +msgstr "" + +#: docs/G-Codes.md:block 295 (paragraph) +msgid "" +"`SKEW_PROFILE [LOAD=] [SAVE=] [REMOVE=]`: Profile " +"management for skew_correction. LOAD will restore skew state from the " +"profile matching the supplied name. SAVE will save the current skew state to" +" a profile matching the supplied name. Remove will delete the profile " +"matching the supplied name from persistent memory. Note that after SAVE or " +"REMOVE operations have been run the SAVE_CONFIG gcode must be run to make " +"the changes to persistent memory permanent." +msgstr "" + +#: docs/G-Codes.md:block 296 (header) +msgid "[stepper_enable]" +msgstr "" + +#: docs/G-Codes.md:block 297 (paragraph) +msgid "The stepper_enable module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 298 (header) +msgid "SET_STEPPER_ENABLE" +msgstr "" + +#: docs/G-Codes.md:block 300 (header) +msgid "[temperature_fan]" +msgstr "" + +#: docs/G-Codes.md:block 301 (paragraph) +msgid "" +"The following command is available when a [temperature_fan config " +"section](Config_Reference.md#temperature_fan) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 302 (header) +msgid "SET_TEMPERATURE_FAN_TARGET" +msgstr "" + +#: docs/G-Codes.md:block 303 (paragraph) +msgid "" +"`SET_TEMPERATURE_FAN_TARGET temperature_fan= " +"[target=] [min_speed=] " +"[max_speed=]`: Sets the target temperature for a temperature_fan." +" If a target is not supplied, it is set to the specified temperature in the " +"config file. If speeds are not supplied, no change is applied." +msgstr "" + +#: docs/G-Codes.md:block 304 (header) +msgid "[tmcXXXX]" +msgstr "" + +#: docs/G-Codes.md:block 305 (paragraph) +msgid "" +"The following commands are available when any of the [tmcXXXX config " +"sections](Config_Reference.md#tmc-stepper-driver-configuration) are enabled." +msgstr "" + +#: docs/G-Codes.md:block 306 (header) +msgid "DUMP_TMC" +msgstr "" + +#: docs/G-Codes.md:block 308 (header) +msgid "INIT_TMC" +msgstr "" + +#: docs/G-Codes.md:block 309 (paragraph) +msgid "" +"`INIT_TMC STEPPER=`: This command will initialize the TMC registers. " +"Needed to re-enable the driver if power to the chip is turned off then back " +"on." +msgstr "" + +#: docs/G-Codes.md:block 310 (header) +msgid "SET_TMC_CURRENT" +msgstr "" + +#: docs/G-Codes.md:block 312 (header) +msgid "SET_TMC_FIELD" +msgstr "" + +#: docs/G-Codes.md:block 314 (header) +msgid "[toolhead]" +msgstr "" + +#: docs/G-Codes.md:block 315 (paragraph) +msgid "The toolhead module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 316 (header) +msgid "SET_VELOCITY_LIMIT" +msgstr "" + +#: docs/G-Codes.md:block 318 (header) +msgid "[tuning_tower]" +msgstr "" + +#: docs/G-Codes.md:block 319 (paragraph) +msgid "The tuning_tower module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 320 (header) +msgid "TUNING_TOWER" +msgstr "" + +#: docs/G-Codes.md:block 322 (unordered list) +msgid "" +"`FACTOR`: The value changes at a rate of `factor` per millimeter. The " +"formula used is: `value = start + factor * z_height`. You can plug the " +"optimum Z height directly into the formula to determine the optimum " +"parameter value." +msgstr "" + +#: docs/G-Codes.md:block 322 (unordered list) +msgid "" +"`FACTOR` and `BAND`: The value changes at an average rate of `factor` per " +"millimeter, but in discrete bands where the adjustment will only be made " +"every `BAND` millimeters of Z height. The formula used is: `value = start + " +"factor * ((floor(z_height / band) + .5) * band)`." +msgstr "" + +#: docs/G-Codes.md:block 322 (unordered list) +msgid "" +"`STEP_DELTA` and `STEP_HEIGHT`: The value changes by `STEP_DELTA` every " +"`STEP_HEIGHT` millimeters. The formula used is: `value = start + step_delta " +"* floor(z_height / step_height)`. You can simply count bands or read tuning " +"tower labels to determine the optimum value." +msgstr "" + +#: docs/G-Codes.md:block 323 (header) +msgid "[virtual_sdcard]" +msgstr "" + +#: docs/G-Codes.md:block 324 (paragraph) +msgid "" +"Klipper supports the following standard G-Code commands if the " +"[virtual_sdcard config section](Config_Reference.md#virtual_sdcard) is " +"enabled:" +msgstr "" + +#: docs/G-Codes.md:block 326 (paragraph) +msgid "" +"In addition, the following extended commands are available when the " +"\"virtual_sdcard\" config section is enabled." +msgstr "" + +#: docs/G-Codes.md:block 327 (header) +msgid "SDCARD_PRINT_FILE" +msgstr "" + +#: docs/G-Codes.md:block 328 (paragraph) +msgid "" +"`SDCARD_PRINT_FILE FILENAME=`: Load a file and start SD print." +msgstr "" + +#: docs/G-Codes.md:block 329 (header) +msgid "SDCARD_RESET_FILE" +msgstr "" + +#: docs/G-Codes.md:block 330 (paragraph) +msgid "`SDCARD_RESET_FILE`: Unload file and clear SD state." +msgstr "" + +#: docs/G-Codes.md:block 331 (header) +msgid "[z_tilt]" +msgstr "" + +#: docs/G-Codes.md:block 332 (paragraph) +msgid "" +"The following commands are available when the [z_tilt config " +"section](Config_Reference.md#z_tilt) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 333 (header) +msgid "Z_TILT_ADJUST" +msgstr "" + +#: docs/G-Codes.md:block 7 (paragraph) +msgid "" +"Klipper's goal is to support the G-Code commands produced by common 3rd " +"party software (eg, OctoPrint, Printrun, Slic3r, Cura, etc.) in their " +"standard configurations. It is not a goal to support every possible G-Code " +"command. Instead, Klipper prefers human readable [\"extended G-Code " +"commands\"](#additional-commands). Similarly, the G-Code terminal output is " +"only intended to be human readable - see the [API Server " +"document](API_Server.md) if controlling Klipper from external software." +msgstr "" + +#: docs/G-Codes.md:block 139 (paragraph) +msgid "" +"`GET_POSITION`: Return information on the current location of the toolhead. " +"See the developer documentation of [GET_POSITION " +"output](Code_Overview.md#coordinate-systems) for more information." +msgstr "" + +#: docs/G-Codes.md:block 82 (paragraph) +msgid "" +"`ACTIVATE_EXTRUDER EXTRUDER=`: In a printer with multiple " +"[extruder](Config_Reference.md#extruder) config sections, this command " +"changes the active hotend." +msgstr "" + +#: docs/G-Codes.md:block 22 (header) +msgid "[angle]" +msgstr "" + +#: docs/G-Codes.md:block 23 (paragraph) +msgid "" +"The following commands are available when an [angle config " +"section](Config_Reference.md#angle) is enabled." +msgstr "" + +#: docs/G-Codes.md:block 24 (header) +msgid "ANGLE_CALIBRATE" +msgstr "" + +#: docs/G-Codes.md:block 25 (paragraph) +msgid "" +"`ANGLE_CALIBRATE CHIP=`: Perform angle calibration on the given " +"sensor (there must be an `[angle chip_name]` config section that has " +"specified a `stepper` parameter). IMPORTANT - this tool will command the " +"stepper motor to move without checking the normal kinematic boundary limits." +" Ideally the motor should be disconnected from any printer carriage before " +"performing calibration. If the stepper can not be disconnected from the " +"printer, make sure the carriage is near the center of its rail before " +"starting calibration. (The stepper motor may move forwards or backwards two " +"full rotations during this test.) After completing this test use the " +"`SAVE_CONFIG` command to save the calibration data to the config file. In " +"order to use this tool the Python \"numpy\" package must be installed (see " +"the [measuring resonance document](Measuring_Resonances.md#software-" +"installation) for more information)." +msgstr "" + +#: docs/G-Codes.md:block 26 (header) +msgid "ANGLE_DEBUG_READ" +msgstr "" + +#: docs/G-Codes.md:block 27 (paragraph) +msgid "" +"`ANGLE_DEBUG_READ CHIP= REG=`: Queries sensor " +"register \"register\" (e.g. 44 or 0x2C). Can be useful for debugging " +"purposes. This is only available for tle5012b chips." +msgstr "" + +#: docs/G-Codes.md:block 28 (header) +msgid "ANGLE_DEBUG_WRITE" +msgstr "" + +#: docs/G-Codes.md:block 29 (paragraph) +msgid "" +"`ANGLE_DEBUG_WRITE CHIP= REG= VAL=`: Writes " +"raw \"value\" into register \"register\". Both \"value\" and \"register\" " +"can be a decimal or a hexadecimal integer. Use with care, and refer to " +"sensor data sheet for the reference. This is only available for tle5012b " +"chips." +msgstr "" + +#: docs/G-Codes.md:block 199 (header) +msgid "[led]" +msgstr "" + +#: docs/G-Codes.md:block 200 (paragraph) +msgid "" +"The following command is available when any of the [led config " +"sections](Config_Reference.md#leds) are enabled." +msgstr "" + +#: docs/G-Codes.md:block 202 (paragraph) +msgid "" +"`SET_LED LED= RED= GREEN= BLUE= " +"WHITE= [INDEX=] [TRANSMIT=0] [SYNC=1]`: This sets the LED " +"output. Each color `` must be between 0.0 and 1.0. The WHITE option " +"is only valid on RGBW LEDs. If the LED supports multiple chips in a daisy-" +"chain then one may specify INDEX to alter the color of just the given chip " +"(1 for the first chip, 2 for the second, etc.). If INDEX is not provided " +"then all LEDs in the daisy-chain will be set to the provided color. If " +"TRANSMIT=0 is specified then the color change will only be made on the next " +"SET_LED command that does not specify TRANSMIT=0; this may be useful in " +"combination with the INDEX parameter to batch multiple updates in a daisy-" +"chain. By default, the SET_LED command will sync it's changes with other " +"ongoing gcode commands. This can lead to undesirable behavior if LEDs are " +"being set while the printer is not printing as it will reset the idle " +"timeout. If careful timing is not needed, the optional SYNC=0 parameter can " +"be specified to apply the changes without resetting the idle timeout." +msgstr "" + +#: docs/G-Codes.md:block 203 (header) +msgid "SET_LED_TEMPLATE" +msgstr "" + +#: docs/G-Codes.md:block 204 (paragraph) +msgid "" +"`SET_LED_TEMPLATE LED= TEMPLATE= " +"[=] [INDEX=]`: Assign a " +"[display_template](Config_Reference.md#display_template) to a given " +"[LED](Config_Reference.md#leds). For example, if one defined a " +"`[display_template my_led_template]` config section then one could assign " +"`TEMPLATE=my_led_template` here. The display_template should produce a comma" +" separated string containing four floating point numbers corresponding to " +"red, green, blue, and white color settings. The template will be " +"continuously evaluated and the LED will be automatically set to the " +"resulting colors. One may set display_template parameters to use during " +"template evaluation (parameters will be parsed as Python literals). If INDEX" +" is not specified then all chips in the LED's daisy-chain will be set to the" +" template, otherwise only the chip with the given index will be updated. If " +"TEMPLATE is an empty string then this command will clear any previous " +"template assigned to the LED (one can then use `SET_LED` commands to manage " +"the LED's color settings)." +msgstr "" + +#: docs/G-Codes.md:block 251 (paragraph) +msgid "The query_adc module is automatically loaded." +msgstr "" + +#: docs/G-Codes.md:block 303 (header) +msgid "[smart_effector]" +msgstr "" + +#: docs/G-Codes.md:block 304 (paragraph) +msgid "" +"Several commands are available when a [smart_effector config " +"section](Config_Reference.md#smart_effector) is enabled. Be sure to check " +"the official documentation for the Smart Effector on the [Duet3D " +"Wiki](https://duet3d.dozuki.com/Wiki/Smart_effector_and_carriage_adapters_for_delta_printer)" +" before changing the Smart Effector parameters. Also check the [probe " +"calibration guide](Probe_Calibrate.md)." +msgstr "" + +#: docs/G-Codes.md:block 305 (header) +msgid "SET_SMART_EFFECTOR" +msgstr "" + +#: docs/G-Codes.md:block 306 (paragraph) +msgid "" +"`SET_SMART_EFFECTOR [SENSITIVITY=] [ACCEL=] " +"[RECOVERY_TIME=