One thermistor not working
-
My T0 slot is constantly in fault, reading "N/A" for the temp.
But my T1 slot is working fine. I am able to switch the 2 thermistors present on the board with the same result.
In duet web control I have 2 heaters mapped to 1 tool, each with their own thermistor:
; Heaters
M308 S1 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e0temp
M308 S2 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 2 as thermistor on pin e0temp
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
M950 H2 C"e1heat" T2 ; create nozzle heater output on e0heat and map it to sensor 2
M307 H1 B0 S1.00 ; disable bang-bang mode for heater 1 and set PWM limit
M143 H1 S280 ; set temperature limit for heater 1 to 280C
M307 H2 B0 S1.00 ; disable bang-bang mode for heater 2 and set PWM limit
M143 H2 S280 ; set temperature limit for heater 2 to 280C; Tools
M563 P0 S"E0" D0 H1:2 F0 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0CAny ideas what could be causing this?
-
@ian-miller said in One thermistor not working:
M308 S1 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e0temp
M308 S2 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 2 as thermistor on pin e0tempyou have for both thermistor the same input port (e0temp) defined
-
@siam Thanks, thought I had to reference the extruder/tool it accompanied in that line. The problem is gone, thanks a lot.