prints to screen hello world
Dependents:
RD117_MBED_mod
ToScreen.cpp
- Committer:
- noahmilam
- Date:
- 2015-06-02
- Revision:
- 0:7ab1b3b72029
File content as of revision 0:7ab1b3b72029:
#include "ToScreen.h"
#include "mbed.h"
ToScreen::ToScreen(Serial *pc)
{
_pc = pc;
}
void ToScreen::print(){
_pc->printf("Hello World!\n");
}