Is it possible to us the 'out6_buff' to fire a TTL CO2 Laser? We are currently trying to control an 45 watt TTL CO2 Laser using a Cloudray MYJG50W Power Supply using a Duet 3 Mini5+ Control board.
On the Cloudray MYJG50W power supply, the 'L' pin is a digital on/off >3 Vdc = OFF and less than .3 Vdc = ON. The 'IN' pin is the analog PMW signal.
We are ABLE to fire the laser using the 'out6_buff' pin on the Duet 3 Mini +5 control board when we wire the 'out6_buff' to the L pin on the MYJG50W.
We are NOT ABLE to fire the laser using the 'output6.buff" pin on the Duet 3 mini 5+when we wire to the IN pin on the MYJG5W. The 'L' pin on the MYJG50W is a Digital TTL on/off and the 'IN' pin is a analog 0-5vdc analog PMW signal.
Since the 45 watt CO2 laser that we are using TTL logic, I had to use a '!" to invert the output in the config. g file in the program to fire the Laser on TTL low.
; Tools
M563 P1 S"Laser" F0 ; define tool 1 Laser
G10 P1 X0 Y0 Z0 ; set tool 1 axis offsetsC
G10 P1 R0 S0 ; set initial tool 1 active and standby power to 0
M452 C"!out6" R255 S0 F3000 ; enable Laser mode, on out6 (F3000)
I'm not sure if this is a programming issue or a wiring Issue. Any advice to resolve the issue will be greatly appreciated.