TactileVestProject  V1.0
Tactile API documentation
 All Classes Functions
HardwareInterface.h
1 #ifndef HARDWAREINTERFACE_H
2 #define HARDWAREINTERFACE_H
3 
6 {
7  public:
11  virtual bool Open(char* toOpen) = 0;
15  virtual bool Close() = 0;
19  virtual int SendData(char* dataToSend) = 0;
20  protected:
21  private:
22 };
23 
24 #endif // HARDWAREINTERFACE_H
virtual bool Open(char *toOpen)=0
An interface to a hardware device, such as a serial connection.
Definition: HardwareInterface.h:5
virtual int SendData(char *dataToSend)=0
virtual bool Close()=0