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 N5110 ShiftReg PinDetect
State.cpp
- Committer:
- Siriagus
- Date:
- 2015-05-01
- Revision:
- 4:d6661b976359
- Child:
- 7:678873947b29
File content as of revision 4:d6661b976359:
#include "State.h"
#include "StateManager.h"
// Request the fsm to change to a new state
void State::changeState(MainState newState)
{
// Todo: Rather call a function in StateManager that postponed the change until every update is done
fsm->changeState(newState);
}