Light tower red, yellow, and green.

All things related to Centroid Oak, Allin1DC, MPU11 and Legacy products

Moderator: cnckeith

Post Reply
AllenHylton
Posts: 1
Joined: Wed Nov 20, 2024 9:54 am
Acorn CNC Controller: No
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: Yes
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Light tower red, yellow, and green.

Post by AllenHylton »

Hello. I am trying to integrate a red yellow and green light tower into the centroid ALLIN1DC-cnc controller by using a cycle running signal for yellow, cycle completed machine is ready for green, and a machine is faulted for the red. Are there any recommendations on how to proceed? Thanks for any help.


cncsnw
Community Expert
Posts: 4537
Joined: Wed Mar 24, 2010 5:48 pm

Re: Light tower red, yellow, and green.

Post by cncsnw »

Code: Select all

GreenLight_O  IS OUTnn
YellowLight_O IS OUTnn
RedLight_O    IS OUTnn
;...
IF !SV_PROGRAM_RUNNING && !SV_STOP THEN (GreenLight_O)
IF SV_PROGRAM_RUNNING THEN (YellowLight_O)
IF SV_STOP THEN (RedLight_O)


Post Reply