Light tower red, yellow, and green.
Moderator: cnckeith
-
- 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.
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.
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
Re: Light tower red, yellow, and green.
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)
2 users liked this post
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
(Note: Liking will "up vote" a post in the search results helping others find good information faster)