Version to make it easier to reuse without source modifications

Committer:
JMF
Date:
Tue Mar 27 17:26:35 2018 +0000
Revision:
0:5cd4781e0c88
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JMF 0:5cd4781e0c88 1 # MQTT -- An API for using MQTT over multiple transports
JMF 0:5cd4781e0c88 2
JMF 0:5cd4781e0c88 3 This library originated from https://os.mbed.com/teams/mqtt/code/MQTT/ but has been modified to allow you to select different transports by
JMF 0:5cd4781e0c88 4 modifing the mbed_app.json file.
JMF 0:5cd4781e0c88 5
JMF 0:5cd4781e0c88 6 ## Specifying the connectivity method
JMF 0:5cd4781e0c88 7
JMF 0:5cd4781e0c88 8 Add the following to your `mbed_app.json` file:
JMF 0:5cd4781e0c88 9
JMF 0:5cd4781e0c88 10 ```json
JMF 0:5cd4781e0c88 11 {
JMF 0:5cd4781e0c88 12 "config": {
JMF 0:5cd4781e0c88 13 "mqtt-interface":{
JMF 0:5cd4781e0c88 14 "help": "options are MQTT_ETHERNET, MQTT_WNC14A2A, MQTT_BG96"
JMF 0:5cd4781e0c88 15 "value": "MQTT_ETHERNET"
JMF 0:5cd4781e0c88 16 }
JMF 0:5cd4781e0c88 17 }
JMF 0:5cd4781e0c88 18 }
JMF 0:5cd4781e0c88 19 ```
JMF 0:5cd4781e0c88 20