can't push chnages :(

Fork of FBRDash by Michael Allan

inc/PCComms.h

Committer:
intrinseca
Date:
2012-06-25
Revision:
1:b3907b8d9f65

File content as of revision 1:b3907b8d9f65:

#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