Example program for simple-mbed-client, connecting a device to mbed Device Connector.

Dependencies:   C12832 FXOS8700Q simple-mbed-client

Fork of simple-mbed-client-example by sandbox

Revision:
23:16f397924e3d
Parent:
20:b36b8a73b30f
Child:
24:0a61ee19cf5b
--- a/mbed_app.json	Mon Aug 15 12:06:37 2016 +0200
+++ b/mbed_app.json	Tue Aug 23 16:02:01 2016 +0200
@@ -1,16 +1,30 @@
 {
     "config": {
         "network-interface":{
-            "help": "options are ETHERNET,WIFI,MESH_LOWPAN_ND,MESH_THREAD",
+            "help": "options are ETHERNET,WIFI_ESP8266,MESH_LOWPAN_ND,MESH_THREAD",
             "value": "ETHERNET"
         },
-        "wifi-ssid": {
-            "help": "WiFi SSID",
+        "esp8266-tx": {
+            "help": "Pin used as TX (connects to ESP8266 RX)",
+            "value": "PTD3"
+        },
+        "esp8266-rx": {
+            "help": "Pin used as RX (connects to ESP8266 TX)",
+            "value": "PTD2"
+        },
+        "esp8266-ssid": {
             "value": "\"SSID\""
         },
-        "wifi-password": {
-            "help": "WiFi Password",
+        "esp8266-password": {
             "value": "\"Password\""
+        },
+        "esp8266-debug": {
+            "value": true
+        }
+    },
+    "target_overrides": {
+        "*": {
+            "target.features_add": ["IPV4", "IPV6"]
         }
     }
 }