Temperature dashboard assignment

Dependencies:   EthernetInterface LM75B mbed-rtos mbed

Fork of temperature-dashboard-start by Sille Van Landschoot

TempDashSocketConnection.h

Committer:
gimohd
Date:
2016-01-16
Revision:
17:c8a4886ba688

File content as of revision 17:c8a4886ba688:

#ifndef TempDashSocketConnection_H
#define TempDashSocketConnection_H
#include "EthernetInterface.h"
#include <mbed.h>
#include <string>

class TempDashSocketConnection: public TCPSocketConnection{ 
 public:   
   void sendSensorData(std::string data);
 private:
  
};

#endif