IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Class that triggers a report when binary state changes, on falling edge. More...
Public Member Functions | |
def | __init__ (self, theConfig=CfgTrigger(), initState=None) |
Constructor for onChange trigger class. More... | |
def | test (self, theSig) |
Check if a report should be triggered for the supplied signal. More... | |
![]() | |
def | __init__ (self, theConfig=CfgTrigger()) |
Constructor for base trigger class. More... | |
Public Attributes | |
isInit | |
Flag: Is the system initialized? More... | |
pBool | |
Previous Boolean value. More... | |
![]() | |
config | |
Class that triggers a report when binary state changes, on falling edge.
The signal should be binary or somehow testable to True/False.
def __init__ | ( | self, | |
theConfig = CfgTrigger() , |
|||
initState = None |
|||
) |
Constructor for onChange trigger class.
def test | ( | self, | |
theSig | |||
) |
Check if a report should be triggered for the supplied signal.
Compare the passed signal to that from the last check (if there was one) and return true if they are not equal. For non-trivial signals, the equality binary test should be overloading to return a meaningful binary outcome.
On startup, there may be no previous signal. In that case the first invocation returns a False and stores the signal for future invocations.
Reimplemented from Trigger.
isInit |
Flag: Is the system initialized?
pBool |
Previous Boolean value.
Initalized to False to avoid falling edge on first call.