Fork of MQTT library

Dependencies:   FP

Dependents:   WNCProximityMqtt

MQTTEthernet.h

Committer:
elmkom
Date:
2016-09-27
Revision:
48:326380990a95
Parent:
43:21da1f744243

File content as of revision 48:326380990a95:


#if !defined(MQTTETHERNET_H)
#define MQTTETHERNET_H

#include "MQTTmbed.h"
#include "EthernetInterface.h"
#include "MQTTSocket.h"

class MQTTEthernet : public MQTTSocket
{
public:    
    MQTTEthernet()
    {
        eth.init();                          // Use DHCP
        eth.connect();
    }
    
    EthernetInterface& getEth()
    {
        return eth;
    }
    
    void reconnect()
    {
        eth.connect();  // nothing I've tried actually works to reconnect 
    }
    
private:

    EthernetInterface eth;
    
};


#endif