
iot_water_monitor_v2
Dependencies: easy-connect-v16 Watchdog FP MQTTPacket RecordType-v-16 watersenor_and_temp_code
Diff: MQTT/MQTTEthernet.h
- Revision:
- 11:3802c82a5ae9
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MQTT/MQTTEthernet.h Thu Dec 07 17:07:44 2017 +0000 @@ -0,0 +1,29 @@ + +#if !defined(MQTTETHERNET_H) +#define MQTTETHERNET_H + +#include "MQTTmbed.h" +#include "EthernetInterface.h" +#include "MQTTSocket.h" + +class MQTTEthernet : public MQTTSocket +{ +public: + MQTTEthernet() : MQTTSocket(ð) + { + eth.connect(); + } + + EthernetInterface& getEth() + { + return eth; + } + +private: + + EthernetInterface eth; + +}; + + +#endif