Good morning:
I would need help to configure the heaters on my Duet 3 Mainboard 6HC, I have a print head with a heater and a material dispenser that also has a heater, the temperature sensors are PT100 type. I have a max31865 board for the PT 100 sensors (RTD1 and RTD2), which are 2, the temperatures are displayed well on the screen but it seems that it is not able to control the temperature of the heaters with the sensors, it does not relate them well.
I manage to heat the head and the dispenser but not control the temperature, even though they heat up and up ...., they exceed the limit that I set in the software,
my config.g ....
; General preferences
M575 P1 S1 B57600 ; enable support for PanelDue
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"ROBO" ; set printer name
; Network
M552 P192.168.1.20 S1 ; enable network and set IP address
M553 P255.255.255.0 ; set netmask
M554 P192.168.1.254 ; set gateway
M586 P0 S1 ; enable HTTP
M586 P1 S0 ; disable FTP
M586 P2 S0 ; disable Telnet
; Drives
M569 P0.0 S0 ; physical drive 0.0 goes forwards
M569 P0.1 S0 ; physical drive 0.1 goes forwards
M569 P0.2 S0 ; physical drive 0.2 goes forwards
M569 P0.3 S0 ; physical drive 0.3 goes forwards
M569 P0.5 S0 ; physical drive 0.5 goes forwards
M584 X0.0:0.3 Y0.1 Z0.2 E0.5 ; set drive mapping
;M584 0.3 Y0.1 Z0.2 E0.5 ; set drive mapping
M350 X2 Y2 Z2 E4 I1 ; configure microstepping with interpolation
;M350 X4 Y4 Z4 E16 I1 ; configure microstepping with interpolation
;M92 X80.00 Y80.00 Z80.00 E420.00 ; set steps per mm
;M92 X1626.68 Y1626.68 Z1626.68 E420.00 ; set steps per mm
;M92 X200.00 Y200.00 Z200.00 E420.00 ; set steps per mm
M92 X196.00 Y205.80 Z196.14 E420.00 ; set steps per mm
M566 X100.00 Y100.00 Z20.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
;M203 X1200.00 Y1200.00 Z600.00 E1200.00 ; set maximum speeds (mm/min)
;M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
;M906 X800 Y800 Z800 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
M203 X600.00 Y600.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
M201 X50.00 Y50.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
M906 X3360 Y3360 Z3360 E2987 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
; PanelDue 7i
M575 P1 S1 B115200
; Axis Limits
M208 X0 Y0 Z0 S1 ; set axis minima
M208 X100 Y400 Z200 S0 ; set axis maxima
; Endstops
M574 X1 S1 P"^io1.in"
M574 Y1 S1 P"^io2.in"
;M574 Z2 S1 P"^io3.in"
M574 Z1 S1 P"^io3.in"
; Z-Probe
M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed
M557 X15:99 Y15:399 S200 ; define mesh grid
; Fans
M950 F0 C"out4" Q500 ; create fan 0 on pin out4 and set its frequency
M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off
M950 F1 C"out5" Q500 ; create fan 1 on pin out5 and set its frequency
M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on
; Tools
M563 P0 D0 F0 H1:2 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R50 S60 ; set initial tool 0 active and standby temperatures to 50C
T0
; Heaters
M308 S1 P"spi.cs0" Y"rtd-max31865" ; configure sensor 1 as PT100 on pin spi.cs0
M950 H1 C"out1" T1 ; create nozzle heater output on !out1 and map it to sensor 1
M307 H1 B0 S1.00 V24.0 ; disable bang-bang mode for heater and set PWM limit
M303 H1 P1 S40 ; Heater 1 power 100% Temp limit 40º
M143 H1 P0 S50 A2 ; set temperature limit for heater 1 to 50C
M308 S2 P"spi.cs1" Y"rtd-max31865" ; configure sensor 2 as PT100 on pin spi.cs1
M950 H2 C"out2" T2 ; create nozzle heater output on !out2 and map it to sensor 2
M307 H2 B0 S1.00 V24.0 ; disable bang-bang mode for heater and set PWM limit
M303 H2 P1 S40 ; Heater 2 power 100% Temp limit 40º
M143 H2 P0 S50 A2 ; set temperature limit for heater 2 to 50C
; Custom settings are not defined
Thanks