forked from Klipper3d/klipper
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from stereotech/STEAPP-857
STEAPP-857: added command for set temperature for the chamber heater
- Loading branch information
Showing
7 changed files
with
46 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[heater_generic chamber_heater] | ||
gcode_id: C | ||
heater_pin: multi_pin:chamber_heater | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: chamber_sensor_pin | ||
control: pid | ||
pid_Kp: 39.120 | ||
pid_Ki: 0.196 | ||
pid_Kd: 1955.496 | ||
min_temp: -150 | ||
max_temp: 200 | ||
|
||
[heater_fan chamber_fan] | ||
pin: chamber_fan_pin | ||
heater: chamber_heater | ||
heater_temp: 40 | ||
|
||
#ONLY FOR DEBUG | ||
[verify_heater chamber_heater] | ||
check_gain_time: 1000 | ||
|
||
[gcode_macro M141] | ||
gcode: | ||
SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={params.S} | ||
|
||
[gcode_macro M191] | ||
gcode: | ||
TEMPERATURE_WAIT SENSOR='heater_generic chamber_heater' MINIMUM={params.S} MAXIMUM={params.S|float + 5} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters