I have a 3D printer with a Duet 2 + Duex5 and 3 Berd Air pumps connected on duex.e2heat, duex.e3heat and duex.e4heat that I would like to control them together instead of independently - Basically, I want to bind these 3 fans to 1 "control".
Below is my current config:
; Fans
M950 F0 C"duex.e2heat" Q500
M106 P0 S0 H-1
M950 F2 C"duex.e3heat" Q500
M106 P2 S0 H-1
M950 F3 C"duex.e4heat" Q500
M106 P3 S0 H-1
I searched in the documentation but I have not found clue how to do it - I have also tried a few things but it did not work.
Right now, I'm using a small script in daemon.g to set fan 2 and fan 3 at the same speed as fan 0
m106 P2 S{fans[0].actualValue}
m106 P3 S{fans[0].actualValue}
It's working but there is some latency and that's not great for fast printing.
I hope there is a better way to do it - thanks