Thomas Milburn
/
FBRDash-tom
can't push chnages :(
Fork of FBRDash by
Diff: inc/Comms.h
- Revision:
- 1:b3907b8d9f65
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inc/Comms.h Mon Jun 25 21:01:02 2012 +0000 @@ -0,0 +1,18 @@ +#ifndef FBRDASH_COMMS_H +#define FBRDASH_COMMS_H + +#include "State.h" + +class Comms +{ + public: + Comms(State* _values); + virtual void send(char message) {}; + + protected: + State* values; + + void process_packet(unsigned char id, int length, unsigned char data[]); +}; + +#endif \ No newline at end of file