can't push chnages :(
Dependencies: PinDetect TextLCD mbed
Fork of FBRDash by
Diff: inc/PCComms.h
- Revision:
- 1:b3907b8d9f65
diff -r 1f422ed56e0f -r b3907b8d9f65 inc/PCComms.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inc/PCComms.h Mon Jun 25 21:01:02 2012 +0000 @@ -0,0 +1,21 @@ +#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 \ No newline at end of file