can't push chnages :(
Dependencies: PinDetect TextLCD mbed
Fork of FBRDash by
inc/PCComms.h
- Committer:
- tomontoast
- Date:
- 2012-06-25
- Revision:
- 3:cb334e1d31c6
- Parent:
- 1:b3907b8d9f65
File content as of revision 3:cb334e1d31c6:
#ifndef FBRDASH_PCCOMMS_H #define FBRDASH_PCCOMMS_H #include "mbed.h" #include "State.h" #include "Comms.h" class PCComms : public Comms { public: PCComms(State* _values); virtual void send(char message); private: State* values; Serial* pc; void receive(); }; #endif