This is the libary for the connection with the socket. This libary allows you to send a temperature to the socket.
TempDashSocketConnection.h
- Committer:
- de_geeter_alexander
- Date:
- 2015-12-25
- Revision:
- 0:fc4b4cf5371c
File content as of revision 0:fc4b4cf5371c:
#ifndef TEMPDASHSOCKETCONNECTION_H
#define TEMPDASHSOCKETCONNECTION_H
#include "EthernetInterface.h"
#include <string>
class TempDashSocketConnection : public TCPSocketConnection
{
public:
void sendSensorData(std::string);
private:
};
#endif