can't push chnages :(

Fork of FBRDash by Michael Allan

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PCComms.h Source File

PCComms.h

00001 #ifndef FBRDASH_PCCOMMS_H
00002 #define FBRDASH_PCCOMMS_H
00003 
00004 #include "mbed.h"
00005 #include "State.h"
00006 #include "Comms.h"
00007 
00008 class PCComms : public Comms
00009 {
00010     public:
00011         PCComms(State* _values);
00012         virtual void send(char message);
00013         
00014     private:
00015         State* values;
00016         Serial* pc;
00017         
00018         void receive();
00019 };
00020 
00021 #endif