mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-10 08:17:52 -06:00
adc_temperature: add support for AD597 (#3164)
The AD597 thermocouple amplifier is used in the Raise3D N2+ (and possibly others). Signed-off-by: Bryan Boettcher <bryan.boettcher@gmail.com>
This commit is contained in:
parent
864d172b68
commit
04bd48ca9d
3 changed files with 13 additions and 4 deletions
|
@ -175,6 +175,14 @@ AD595 = [
|
|||
(420., 4.266), (440., 4.476), (460., 4.686), (480., 4.896)
|
||||
]
|
||||
|
||||
AD597 = [
|
||||
(0., 0.), (10., .097), (20., .196), (25., .245), (30., .295),
|
||||
(40., 0.395), (50., 0.496), (60., 0.598), (80., 0.802), (100., 1.005),
|
||||
(120., 1.207), (140., 1.407), (160., 1.605), (180., 1.801), (200., 1.997),
|
||||
(220., 2.194), (240., 2.392), (260., 2.592), (280., 2.794), (300., 2.996),
|
||||
(320., 3.201), (340., 3.406), (360., 3.611), (380., 3.817), (400., 4.024),
|
||||
(420., 4.232), (440., 4.440), (460., 4.649), (480., 4.857), (500., 5.066)
|
||||
]
|
||||
|
||||
AD8494 = [
|
||||
(-180, -0.714), (-160, -0.658), (-140, -0.594), (-120, -0.523),
|
||||
|
@ -275,6 +283,7 @@ def load_config(config):
|
|||
# Register default sensors
|
||||
pheaters = config.get_printer().load_object(config, "heaters")
|
||||
for sensor_type, params in [("AD595", AD595),
|
||||
("AD597", AD597),
|
||||
("AD8494", AD8494),
|
||||
("AD8495", AD8495),
|
||||
("AD8496", AD8496),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue