prints to screen hello world
ToScreen.h@0:7ab1b3b72029, 2015-06-02 (annotated)
- 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?
User | Revision | Line number | New 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 | }; |