prints to screen hello world
Dependents:
RD117_MBED_mod
ToScreen.h
- Committer:
- noahmilam
- Date:
- 2015-06-02
- Revision:
- 0:7ab1b3b72029
File content as of revision 0:7ab1b3b72029:
#include "mbed.h"
class ToScreen {
public:
ToScreen(Serial *pc) ;
void print();
private:
Serial *_pc;
};