temperature_combined: A class that can combine several other temperature sensors (#6230)

Signed-off-by: Michael Jäger <michael@mjaeger.eu>
This commit is contained in:
Michael Jäger
2023-08-01 19:18:03 +02:00
committed by GitHub
parent 039daecb4f
commit 6f7c743615
5 changed files with 157 additions and 1 deletions

View File

@@ -2583,6 +2583,24 @@ serial_no:
# The micro-controller to read from. Must be the host_mcu
```
### Combined temperature sensor
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.
```
sensor_type: temperature_combined
#sensor_list:
# Must be provided. List of sensors to combine to new "virtual"
# sensor.
# E.g. 'temperature_sensor sensor1,extruder,heater_bed'
#combination_method:
# Must be provided. Combination method used for the sensor.
# Available options are 'max', 'min', 'mean'.
#maximum_deviation:
# Must be provided. Maximum permissible deviation between the sensors
# to combine (e.g. 5 degrees). To disable it, use a large value (e.g. 999.9)
```
## Fans
### [fan]