diff options
author | John Jardine <john@gprime.net> | 2019-02-14 01:15:11 +0000 |
---|---|---|
committer | John Jardine <john@gprime.net> | 2019-02-14 01:15:11 +0000 |
commit | 6316b2c1b6d6a1b3c276049bbb02959d63d7d89b (patch) | |
tree | b90145990e6219682c1e5317553a41fd4bf31347 /config | |
parent | 805e56008f822136031d28fa1c09c914cd98bfcf (diff) | |
download | kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.tar.gz kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.tar.xz kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.zip |
Generic Heater Support
Adds the ability to register a custom/generic heater through a new extra called heater_generic.
This takes a gcode_id that is reported by M105. Adds a new command to set the temperature for any heater using the syntax:
SET_HEATER_TEMPERATURE HEATER=<heater_name> TARGET=<target_temp>
Signed-off-by: John Jardine <john@gprime.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 5cd56902..36ff7fec 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1176,6 +1176,33 @@ # Directly sets the default prefix. If present, this value will override # the "default_type". +# The heater_generic section is used to describe a custom/generic heater. +# These behave the same as typical heaters (extruders, heated beds) and +# can be configured as similarly. +# However, a gcode_id must be supplied which is used for temperature reporting. +# See notes on the SET_HEATER_TEMPERATURE command for setting the temperature. +#[heater_generic my_generic_heater] +#gcode_id: C +# A mandatory parameter that is required for reporting the temperature +# through the M105 command. +#heater_pin: +#max_power: +#sensor_type: +#sensor_pin: +#pullup_resistor: +#adc_voltage: +#smooth_time: +#control: +#pid_Kp: +#pid_Ki: +#pid_Kd: +#pid_integral_max: +#pwm_cycle_time: +#min_extrude_temp: +#min_temp: +#max_temp: +# See the example.cfg for the definition of the above parameters. + # Pause/Resume functionality with support of position capture and restore #[pause_resume] #recover_velocity: 50. |