Adding support for MAX31856 Thermocouple Temperature Sensor (feature #700) (#1039)

This commit is contained in:
declanshanaghy
2020-05-24 15:33:59 -07:00
committed by GitHub
parent fb2b7ade41
commit e64246f642
7 changed files with 330 additions and 1 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ void MAX31865Sensor::dump_config() {
LOG_UPDATE_INTERVAL(this);
ESP_LOGCONFIG(TAG, " Reference Resistance: %.2fΩ", reference_resistance_);
ESP_LOGCONFIG(TAG, " RTD: %u-wire %.2fΩ", rtd_wires_, rtd_nominal_resistance_);
ESP_LOGCONFIG(TAG, " Filter: %s",
ESP_LOGCONFIG(TAG, " Mains Filter: %s",
(filter_ == FILTER_60HZ ? "60 Hz" : (filter_ == FILTER_50HZ ? "50 Hz" : "Unknown!")));
}