Activation sortie OUT1
-
Hello
I have a duo 3 6HC and I would like to put a solenoid valve on OUT1.
I wish I could turn OUT1 on ON / OFF while printing, but I don't see how.
I thought I would define a Gpio port with M950 and then activate it with M42, but then how to do an ON / OFF on this output?
Thank you in advance for your help! -
@nadège-andré that is correct. If you choose gpOut pin 0 for this purpose then the commands would be:
M950 P0 C"out1" ; define the port
M42 P0 S1 ; turn the valve on
M42 P0 S0 ; turn the valve off -
@dc42 said in Activation sortie OUT1:
@nadège-andré that is correct. If you choose gpOut pin 0 for this purpose then the commands would be:
M950 P0 C"out1" ; define the port
M42 P0 S1 ; turn the valve on
M42 P0 S0 ; turn the valve offSuper merci je vais essayer de suite!