aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/temperature_sensors.cfg
Commit message (Collapse)AuthorAgeFilesLines
* sht3x: Add sht31 support (#6560)Timofey Titovets2024-04-201-0/+2
| | | Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
* heaters: Remove deprecated thermistor "NTC 100K beta 3950"Kevin O'Connor2024-02-151-6/+0
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_combined: A class that can combine several other temperature ↵Michael Jäger2023-08-011-0/+3
| | | | | sensors (#6230) Signed-off-by: Michael Jäger <michael@mjaeger.eu>
* aht10: Added support for AHT10 ambient temperature sensor (#6138)Scott Mudge2023-04-071-0/+3
| | | | | This commit adds support for the I2C-based AHT10 ambient temperature sensor. The sensor comes pre-calibrated and has a fairly simple command interface, so the interface class is in-turn relatively simple. So far this has been tested on a BTT GTR 1.0 MCU board (STM32F4), and seems to work fine. Signed-off-by: Scott Mudge <mail@scottmudge.com>
* temperature_sensors: add ATC Semitec 104NT-4-R025H42G thermistorGeoffrey Young2021-11-151-0/+9
| | | | | | | | | | | | | | | | module: extras/temperature_sensors.cfg this thermistor is the 104NT-4 resold by Trianglelab (and others on Ali), as well as the 300 degree resold by Slice Engineering, both of which use the same RT table (TL even links to the ATC Semitec website) see the 300 C tab on the Slice spreadsheet: https://docs.google.com/spreadsheets/d/1904x5JK-Sup-cX5DqHiiZWaFVTK6_PQBFxgi_6yXEJw/edit#gid=934228925 as well as the TL product page: https://www.aliexpress.com/item/32843785247.html in addition to the RT table provided in temperature_sensors.cfg Signed-off-by: Geoffrey Young <geoffrey.young@gmail.com>
* temperature_sensors: Deprecate "NTC 100K beta 3950" thermistorKevin O'Connor2021-11-101-1/+1
| | | | | | | | | | It seems the common "beta 3950" thermistors generally follow a temperature table defined by the new "Generic 3950" definition. Using a table that actually follows the "beta 3950" temperature curve is generally less accurate. Deprecate the existing "NTC 100K beta 3950" definition to avoid this common issue. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_sensors: Add a new "Generic 3950" thermistorKevin O'Connor2021-11-101-0/+9
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_sensors: Define default thermistors in configKevin O'Connor2021-11-101-4/+64
| | | | | | | Move the definitions of the default thermistors from thermistors.py to the temperature_sensors.cfg file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* temperature_sensors: Define default sensors in new config fileKevin O'Connor2021-11-101-0/+31
Move the default list of sensor modules from heaters.py to a new temperature_sensors.cfg config file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>