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.
Move.h
- Committer:
- DanielleKruijver
- Date:
- 2019-04-12
- Revision:
- 1:3d46a0660d05
File content as of revision 1:3d46a0660d05:
#ifndef _MOVE_H_ #define _MOVE_H_ #include "mbed.h" #include "rtos.h" #include <fstream> #include "DataStore.h" #include <iostream> #include <cmath> #include "math.h" #include "Daan_Test1_maxon.h" using namespace std; class MOVE { public: DataStore *m_FtoW_data; virtual ~MOVE(); void Move( ); }; #endif