Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: PinDetect TextLCD mbed
Fork of FBRDash by
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
