I have a Duet 2 running RRF 3. I'm running 24V from E0 to an Omron PID controller and then to an SSR that switches 120V for my pellet extruder. It's patterned off similar machines in my shop that are running RRF 2.
I can't figure out the configuration and correlating commands to switch the SSR on and off. I'd really appreciate any help.
Here is my relevant Heaters config (I've tried with H1 commented out because I don't want temp feedback or control--that's for the external PID):
; Heaters
M308 S0 P"bedtemp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
M950 H0 C"e1heat" T0 ; create bed heater output on e1heat and map it to sensor 0
M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
M140 H0 ; map heated bed to heater 0
M143 H0 S70 ; set temperature limit for heater 0 to 70C
;M308 S1 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e0temp
;M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
;M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
;M143 H1 S280
and Tools config:
; Tools
M563 P0 S"Pellet Extruder" D0 H1 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 0C
On my other machines, "M42 P0 S1" turns on the heater. I' can't figure out why that doesn't work here.