prints to screen hello world

Dependents:   RD117_MBED_mod

Committer:
noahmilam
Date:
Tue Jun 02 05:21:14 2015 +0000
Revision:
0:7ab1b3b72029
first time publishing a simple lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
noahmilam 0:7ab1b3b72029 1
noahmilam 0:7ab1b3b72029 2 #include "mbed.h"
noahmilam 0:7ab1b3b72029 3
noahmilam 0:7ab1b3b72029 4 class ToScreen {
noahmilam 0:7ab1b3b72029 5 public:
noahmilam 0:7ab1b3b72029 6 ToScreen(Serial *pc) ;
noahmilam 0:7ab1b3b72029 7 void print();
noahmilam 0:7ab1b3b72029 8 private:
noahmilam 0:7ab1b3b72029 9 Serial *_pc;
noahmilam 0:7ab1b3b72029 10 };