Omron: How do I access the Timer Done Flag in ST?

theColonel26

Lifetime Supporting Member
Join Date
Feb 2014
Location
West Michigan
Posts
785
On Omron/CX-Programmer: How do I access the Timer Done Flag in ST?

TimerS is TIMER
TimerRun is BOOL
TimerTime is UINT

TimerS as a bool doesn't work and TimerS.Q doesn't work.


Code:
TIMX(TimerRun,TimerS,TimerTime);

IF (TimerS.Q) = true THEN 
        TimerRun := False;
ELSE
	TimerRun := True;
END_IF;



EDIT: Found it on page 142 of the V9 Function Block Manual. If I could delete this I would.

Code:
Timer.CF Completion Flag
Timer.PV Present Value
 
Last edited:

Similar Topics

Hi All, We are looking at installing remote access for a client so that we can log-in remotely and troubleshoot the PLC but also so that the...
Replies
7
Views
2,612
I wrote the PLC & HMI program for a subsea tool that we have developed (similar to an ROV but much simpler), and also the user's manual and now...
Replies
9
Views
10,193
I am looking for a solution to connect to my Omron PLC remotely. The challenging part is that the PLC's are on mobile units, and there isn't...
Replies
1
Views
2,673
I'm trying to configure the Omron ETN21 ethernet module to access it trough VPN without success. I am able to connect to other PLC's in the same...
Replies
0
Views
3,245
We need to extablish remote access to an Omron (NS-10) HMI, which is on a remote Hydro-Electric site. The site has a broadband (ADSL)...
Replies
6
Views
8,646
Back
Top Bottom