Temperature dashboard assignment
Dependencies: EthernetInterface LM75B mbed-rtos mbed
Fork of temperature-dashboard-start by
TempDashSocketConnection.h@18:61724d00e95d, 2016-01-16 (annotated)
- Committer:
- gimohd
- Date:
- Sat Jan 16 21:11:01 2016 +0000
- Revision:
- 18:61724d00e95d
- Parent:
- 17:c8a4886ba688
upd
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gimohd | 17:c8a4886ba688 | 1 | #ifndef TempDashSocketConnection_H |
gimohd | 17:c8a4886ba688 | 2 | #define TempDashSocketConnection_H |
gimohd | 17:c8a4886ba688 | 3 | #include "EthernetInterface.h" |
gimohd | 17:c8a4886ba688 | 4 | #include <mbed.h> |
gimohd | 17:c8a4886ba688 | 5 | #include <string> |
gimohd | 17:c8a4886ba688 | 6 | |
gimohd | 17:c8a4886ba688 | 7 | class TempDashSocketConnection: public TCPSocketConnection{ |
gimohd | 17:c8a4886ba688 | 8 | public: |
gimohd | 17:c8a4886ba688 | 9 | void sendSensorData(std::string data); |
gimohd | 17:c8a4886ba688 | 10 | private: |
gimohd | 17:c8a4886ba688 | 11 | |
gimohd | 17:c8a4886ba688 | 12 | }; |
gimohd | 17:c8a4886ba688 | 13 | |
gimohd | 17:c8a4886ba688 | 14 | #endif |