IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Class that triggers a report when the state changes. More...
Public Member Functions | |
def | __init__ (self, theConfig=CfgTrigger()) |
Constructor for onChange trigger class. More... | |
def | test (self, theSig) |
Check if a report should be triggered for the supplied signal. More... | |
Public Attributes | |
isInit | |
prevSig | |
![]() | |
config | |
Class that triggers a report when the state changes.
In principle, the equality binary operator should work (be defined) for the signal class. If the signal doesn't support equality, or equality is a bad idea, then try the whenDiffers trigger.
def __init__ | ( | self, | |
theConfig = CfgTrigger() |
|||
) |
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 |
prevSig |