eeros_architecture:sequencer:monitors
                Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| eeros_architecture:sequencer:monitors [2017/08/17 20:47] – graf | eeros_architecture:sequencer:monitors [2021/10/20 16:07] (current) – [Define your own Condition] ursgraf | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| All these situations have in common, that a user does want to check for a given set of conditions during the running of the sequence (including subsequences or steps). | All these situations have in common, that a user does want to check for a given set of conditions during the running of the sequence (including subsequences or steps). | ||
| - | TODO | + | ===== Define your own Condition ===== | 
| - | [{{ .:sequencemonitorcase1.png? | + | Implement your condition by extending the class '' | 
| + | <code cpp> | ||
| + | class MyCondition : public Condition | ||
| + | public: | ||
| + | MyCondition() : { } // initialize any attributes necessary | ||
| + | bool validate() {return yourTest; | ||
| + | }; | ||
| + | </ | ||
| + | The method // | ||
| + | IMPORTANT Every Sequence or step already has a timeout condition (of class '' | ||
| + | |||
| + | IMPORTANT Make sure that your condition is properly set and reset. To give an example: A condition might be the state of a button. As soon as the button is pressed, the condition might return '' | ||
| + | ===== Assign a Condition to a Monitor ===== | ||
| + | The second step is to define a monitor and assign it a condition. | ||
| + | <code cpp> | ||
| + | SequenceA seq(...); | ||
| + | MyCondition myCondition; | ||
| + | Monitor myMonitor(" | ||
| + | setExceptionSequence(exceptionSeq); | ||
| + | seq.addMonitor(& | ||
| + | </ | ||
| + | IMPORTANT Here again, every sequence or step already has a timeout monitor which helps to check its associated timeout condition. A second monitor checks the abort condition. | ||
eeros_architecture/sequencer/monitors.1502995676.txt.gz · Last modified: 2017/08/17 20:47 by graf
                
                