You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parent Action class should let sub-classes implement two methods:
on_start
on_stop
on_start will do the usual command and on_stop will contain code to finish the action, in case the user pressed STOP during its operation. The STOP will trigger an event that the parent Action class will listen to and stop the on_start operation. This can be also communicated with an interrupt instead, which might be a better choice.
The text was updated successfully, but these errors were encountered:
The parent Action class should let sub-classes implement two methods:
on_start will do the usual command and on_stop will contain code to finish the action, in case the user pressed STOP during its operation. The STOP will trigger an event that the parent Action class will listen to and stop the on_start operation. This can be also communicated with an interrupt instead, which might be a better choice.
The text was updated successfully, but these errors were encountered: