Forklift lift thread
Diff: lift.h
- Revision:
- 0:fb7984ae3c0c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lift.h Wed Aug 23 02:25:54 2017 +0000 @@ -0,0 +1,16 @@ +#ifndef __LIFT_INCLUDED__ +#define __LIFT_INCLUDED__ + +#include "mbed.h" + +class Lift{ +private: + Thread lift_thread; + void run(); + +public: + Lift(); + void start(); +}; + +#endif \ No newline at end of file