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.
Fork of MQTT by
MQTTEthernet.h@45:bd3567993b26, 2015-08-12 (annotated)
- Committer:
- ericliang
- Date:
- Wed Aug 12 02:38:46 2015 +0000
- Revision:
- 45:bd3567993b26
- Parent:
- 43:21da1f744243
Modify MQTT lib for WISEAgent
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| icraggs | 29:833386b16f3e | 1 | |
| icraggs | 29:833386b16f3e | 2 | #if !defined(MQTTETHERNET_H) |
| icraggs | 29:833386b16f3e | 3 | #define MQTTETHERNET_H |
| icraggs | 29:833386b16f3e | 4 | |
| icraggs | 43:21da1f744243 | 5 | #include "MQTTmbed.h" |
| icraggs | 29:833386b16f3e | 6 | #include "EthernetInterface.h" |
| icraggs | 31:a51dd239b78e | 7 | #include "MQTTSocket.h" |
| icraggs | 29:833386b16f3e | 8 | |
| icraggs | 31:a51dd239b78e | 9 | class MQTTEthernet : public MQTTSocket |
| icraggs | 29:833386b16f3e | 10 | { |
| icraggs | 29:833386b16f3e | 11 | public: |
| icraggs | 29:833386b16f3e | 12 | MQTTEthernet() |
| icraggs | 29:833386b16f3e | 13 | { |
| icraggs | 29:833386b16f3e | 14 | eth.init(); // Use DHCP |
| icraggs | 29:833386b16f3e | 15 | eth.connect(); |
| icraggs | 29:833386b16f3e | 16 | } |
| icraggs | 29:833386b16f3e | 17 | |
| icraggs | 41:b7e86fa6dbb8 | 18 | EthernetInterface& getEth() |
| icraggs | 41:b7e86fa6dbb8 | 19 | { |
| icraggs | 41:b7e86fa6dbb8 | 20 | return eth; |
| icraggs | 41:b7e86fa6dbb8 | 21 | } |
| icraggs | 41:b7e86fa6dbb8 | 22 | |
| icraggs | 41:b7e86fa6dbb8 | 23 | void reconnect() |
| icraggs | 41:b7e86fa6dbb8 | 24 | { |
| icraggs | 41:b7e86fa6dbb8 | 25 | eth.connect(); // nothing I've tried actually works to reconnect |
| icraggs | 41:b7e86fa6dbb8 | 26 | } |
| icraggs | 41:b7e86fa6dbb8 | 27 | |
| ericliang | 45:bd3567993b26 | 28 | |
| icraggs | 29:833386b16f3e | 29 | private: |
| icraggs | 29:833386b16f3e | 30 | |
| icraggs | 29:833386b16f3e | 31 | EthernetInterface eth; |
| icraggs | 29:833386b16f3e | 32 | |
| icraggs | 29:833386b16f3e | 33 | }; |
| icraggs | 29:833386b16f3e | 34 | |
| icraggs | 29:833386b16f3e | 35 | |
| icraggs | 29:833386b16f3e | 36 | #endif |
