sys::Obj sys::Virtual sys::Component control::SRLatch
public class SRLatch
[niagaraIcon="module://icons/x16/control/control.png"]
SRLatch Set Reset Latch object
if ^s out = true; if ^r out = false; If both inputs have rising edges, out becomes false
public bool lastReset
public bool lastSet
public property bool out [readonly]
output
public property bool r
On rising edge of r, out becomes false
public property bool s
On rising edge of s, out becomes true
public virtual override void execute()
Execute is called once every scan.
On rising edge of s, out becomes true On rising edge of r, out becomes false If both inputs have rising edges, out becomes false
public virtual override void start()
Callback when component is first started in an app.