can't push chnages :(

Fork of FBRDash by Michael Allan

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Comms.h Source File

Comms.h

00001 #ifndef FBRDASH_COMMS_H
00002 #define FBRDASH_COMMS_H
00003 
00004 #include "State.h"
00005 
00006 class Comms
00007 {
00008     public:
00009         Comms(State* _values);
00010         virtual void send(char message) {};
00011     
00012     protected:
00013         State* values;
00014         
00015         void process_packet(unsigned char id, int length, unsigned char data[]);
00016 };
00017 
00018 #endif