Forklift lift thread
lift.h
- Committer:
- williampeers
- Date:
- 2017-08-23
- Revision:
- 0:fb7984ae3c0c
File content as of revision 0:fb7984ae3c0c:
#ifndef __LIFT_INCLUDED__ #define __LIFT_INCLUDED__ #include "mbed.h" class Lift{ private: Thread lift_thread; void run(); public: Lift(); void start(); }; #endif