-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file is an example config file for an active chamber heater. | ||
|
||
# See docs/Config_Reference.md for a description of parameters. | ||
|
||
# Multiple temperature sensors are installed throughout the chamber to | ||
# measure an average temperature. | ||
[temperature_sensor chamber1] | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: PA0 | ||
[temperature_sensor chamber2] | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: PA1 | ||
[temperature_sensor chamber3] | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: PA2 | ||
|
||
[heater_chamber] | ||
heater_pin: PH5 | ||
sensor_type: temperature_combined | ||
sensor_list: | ||
temperature_sensor chamber1, | ||
temperature_sensor chamber2, | ||
temperature_sensor chamber3 | ||
maximum_deviation: 10 | ||
control: watermark | ||
min_temp: 0 | ||
max_temp: 70 | ||
|
||
[heater_fan chamber_fan] | ||
pin: PL5 | ||
heater: heater_chamber | ||
|
||
# Monitor the heating element to ensure that it doesn't exceed rated | ||
# temperatures. | ||
[temperature_sensor chamber_heater_element] | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: PA3 | ||
min_temp: 0 | ||
max_temp: 150 |