prints to screen hello world
Diff: ToScreen.cpp
- Revision:
- 0:7ab1b3b72029
diff -r 000000000000 -r 7ab1b3b72029 ToScreen.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ToScreen.cpp Tue Jun 02 05:21:14 2015 +0000 @@ -0,0 +1,11 @@ +#include "ToScreen.h" +#include "mbed.h" + + ToScreen::ToScreen(Serial *pc) + { + _pc = pc; +} + void ToScreen::print(){ + + _pc->printf("Hello World!\n"); + } \ No newline at end of file