Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
TaskWait.cpp
- Committer:
- solcager
- Date:
- 2017-03-31
- Revision:
- 1:08ca9b208045
File content as of revision 1:08ca9b208045:
/*
* TaskWait.cpp
* Copyright (c) 2017, ZHAW
* All rights reserved.
*/
#include "TaskWait.h"
using namespace std;
/**
* Creates a task object that waits for a given duration.
*/
TaskWait::TaskWait(Controller& controller, float duration) : controller(controller) {
this->duration = duration;
time = 0.0f;
}
/**
* Deletes the task object.
*/
TaskWait::~TaskWait() {}
/**
* This method is called periodically by a task sequencer.
* @param period the period of the task sequencer, given in [s].
* @return the status of this task, i.e. RUNNING or DONE.
*/
int TaskWait::run(float period) {
controller.setTranslationalVelocity(0.0f);
controller.setRotationalVelocity(0.0f);
time += period;
if (time < duration) {
return RUNNING;
} else {
return DONE;
}
}