can't push chnages :(

Fork of FBRDash by Michael Allan

Revision:
1:b3907b8d9f65
diff -r 1f422ed56e0f -r b3907b8d9f65 inc/Comms.h
--- /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