LamaPLC: Simatic S7 SCL commands: Bit logic operations

positive / negative edge monitoring

Of course, there is an R_TRIG / F_TRIG function for edge monitoring, but do you really have to call an FB and an IDB for such a simple function?

Both negative and positive edge monitoring require an extra BOOL type static, db, or mark variable (temp is not good!) in addition to the signal variable. In this variable, the signal state one cycle earlier is stored and the current state of the signal is compared. If the old state is FALSE and the current state is TRUE, then a positive edge is received; if the reverse is true, the old state is TRUE and the new state is FALSE.

The example below illustrates the two options, the variables in this case being FB local “static” variables, but they can also be DB variables or markers. The signal can also be an input:

edge_monitor

// signal, old_signal is type BOOL
 
IF #signal AND NOT (#old_signal) THEN
    // positive flash block program
    // 
    ;
END_IF;
 
IF NOT(#signal) AND #old_signal THEN
    // negative flash block program
    // 
    ;
END_IF;
 
// update the storage BOOL
#old_signal := #signal;

>> Back to LamaPLC main menu (SCL commands)

R_TRIG

Detect positive signal edge, if the state change from FALSE to TRUE at CLK. I have described above a similar but much simpler procedure for edge monitoring: positive / negative edge monitoring.

_FB_ R_TRIG (CLK := signal monitoring (BOOL), Q ⇒ result (BOOL);

parameter nameparameter typefunction
CLK inputIncoming signal
Q outputResult of edge evaluation

>> Back to LamaPLC main menu (SCL commands)

F_TRIG

Detect negative signal edge, if the state change from TRUE to FALSE at CLK. I have described above a similar but much simpler procedure for edge monitoring: positive / negative edge monitoring.

_FB_ F_TRIG (CLK := signal monitoring (BOOL), Q ⇒ result (BOOL);

parameter nameparameter typefunction
CLK inputIncoming signal
Q outputResult of edge evaluation

>> Back to LamaPLC main menu (SCL commands)



This page has been accessed for: Today: 1, Until now: 141