diff options
author | Al <aleph@al3ph.org> | 2020-12-03 17:35:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 12:35:37 -0500 |
commit | b911db4c0de10245fd008a6a236d6af23b93e8fe (patch) | |
tree | e961be2b455814699810d5306203a6bcd7608a49 /docs/Config_Reference.md | |
parent | a1ae54876662e097094f4434a69eca79cb5af9ae (diff) | |
download | kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.tar.gz kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.tar.xz kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.zip |
rpi_temperature: New module to monitor RPi temperature (#3587)
Module to monitor RPi cpu temperature
Signed-off-by: Al Crate <aleph@al3ph.org>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 5b0a8b54..cb9e3a6e 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -2058,6 +2058,27 @@ but this mode is not used here. # 0.5. ``` +## RPi temperature sensor + +CPU temperature from Raspberry Pi. + +``` +#[temperature_sensor my_sensor] +# See the "temperature_sensor" section for a description of its +# parameters. The parameters below describe the Raspberry Pi sensor +# parameters. +#sensor_type: +# Must be "rpi_temperature". +min_temp: -40 +max_temp: 85 +# The maximum safe range of temperatures (in Celsius) that the +# RPi must remain within. This controls a safety feature +# implemented in the micro-controller code - should the measured +# temperature ever fall outside this range then the micro-controller +# will go into a shutdown state. Set this range just wide +# enough so that reasonable temperatures do not result in an error. +``` + ## [heater_generic] Generic heaters (one may define any number of sections with a |