SOLVED: Duet3: Configured wrong
-
@Danal said in Duet3: Possible bug or configured wrong?:
@gtj0 said in Duet3: Possible bug or configured wrong?:
I don't have my expansion board running yet but try adding
SC parameters to the M106's to give them names and see if that helps.You mean C parameters? S on an M106 is speed.
Yeah I corrected it just after I posted
-
Tried it. No change.
; Fans for hot end cooling M950 F10 C"1.out6" M106 P10 S255 H1 T45 C"FanHE0" ; S = Speed of fan Px, Hxx = heater for thermo mode, T = temps for thermo mode. M950 F11 C"1.out7" M106 P11 S255 H2 T45 C"FanHE1" ; S = Speed of fan Px, Hxx = heater for thermo mode, T = temps for thermo mode. ; Fans for print cooling M950 F0 C"1.out3" C"FanPrint0" M950 F1 C"1.out4" C"FanPrint1"
-
Have you tried adding M106 commands for fans 0 and 1?
-
@Danal said in Duet3: Possible bug or configured wrong?:
F
Yeah I just noticed that you put a second "C" param on the M950 and there aren't any M106 commands for F0 and F1.
-
@Danal I think it's the missiing M106's that are the problem as others have said. For infor, this works for me:
M950 F0 C"2.out6" Q10; fan 0, part cooling fan frequency 10 hz, connected to expansion board 2 out6 (12v)
M106 P0 S0.0 H-1 C"Print Fan"; -
Several folks suggested M106s. Makes sense... That's very likely the fix.
I'm away from the printer right now, I will post when I try that later today (in Texas, GMT +6).
-
@gtj0 said in Duet3: Possible bug or configured wrong?:
Yeah I just noticed that you put a second "C" param on the M950
That was a mistake, and caused those two fans to not config at all, which cascaded into the tool not config-ing... thanks for pointing that out!!!
-
This post is deleted! -
M106 with the C"name" parameter DOES make the fans visible to DWC... with the caveat that it only caused a "change visibility" button to appear in the fan section of DWC, and I had to check a box for each fan to become visible.
So: Yes, M106, with C, is needed. In addition, hit "change visibility".
Also, at the moment, the expansion board MAY have to be reset to pick up certain changes in the M950 M106 combination. Safest is M999, reset button on board, M999 again.
-
@Danal the main board needs to run config.g again to reconfigure the expansion board with new changes. easiest is a reset but just running config.g again with M98 also works.
-
@T3P3Tony Thanks! That's much easier.