Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832 GSwifiInterface MQTT mbed-rtos mbed
Fork of HelloMQTT by
Diff: MQTTGSwifi.h
- Revision:
- 16:fd155e824a80
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MQTTGSwifi.h Thu Oct 02 03:26:56 2014 +0000 @@ -0,0 +1,22 @@ + +#ifndef MQTTGSWIFI_H +#define MQTTGSWIFI_H + +#include "MQTT_mbed.h" +#include "GSwifiInterface.h" +#include "MQTTSocket.h" + +class MQTTGSwifi : public MQTTSocket +{ +public: + MQTTGSwifi(GSwifiInterface *gs) : eth(gs) + { + } + +private: + + GSwifiInterface *eth; + +}; + +#endif