Alexander De Geeter / TempDashSocketConnection
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TempDashSocketConnection.cpp Source File

TempDashSocketConnection.cpp

00001 #include "TempDashSocketConnection.h"
00002 #include "EthernetInterface.h"
00003 
00004 void TempDashSocketConnection::sendSensorData(std::string data)
00005 {
00006     send(const_cast<char*>(data.c_str()), data.length());
00007 }
00008 
00009