This is a simple mbed client example demonstrating, registration of a device with mbed Device Connector and reading and writing values as well as deregistering on different Network Interfaces including Ethernet, WiFi, 6LoWPAN ND and Thread respectively.

Fork of mbed-os-example-client by mbed-os-examples

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Wed Jan 04 22:15:09 2017 +0000
Parent:
50:ff7d04c93314
Child:
52:957eff5f0ee9
Commit message:
Mesh to use channel 12 & Thread PANID 0xDEFA (#158)

The included firmware binaries for mesh are hard-coded for channel 12,
so better use that in the JSONs as well.
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-client

Changed in this revision

configs/mesh_6lowpan.json Show annotated file Show diff for this revision Revisions of this file
configs/mesh_thread.json Show annotated file Show diff for this revision Revisions of this file
--- a/configs/mesh_6lowpan.json	Thu Dec 22 07:30:10 2016 +0000
+++ b/configs/mesh_6lowpan.json	Wed Jan 04 22:15:09 2017 +0000
@@ -14,7 +14,7 @@
         "*": {
             "target.features_add": ["NANOSTACK", "LOWPAN_ROUTER", "COMMON_PAL"],
             "mbed-mesh-api.6lowpan-nd-channel-page": 0,
-            "mbed-mesh-api.6lowpan-nd-channel": 18,
+            "mbed-mesh-api.6lowpan-nd-channel": 12,
             "mbed-trace.enable": 0
         }
     }
--- a/configs/mesh_thread.json	Thu Dec 22 07:30:10 2016 +0000
+++ b/configs/mesh_thread.json	Wed Jan 04 22:15:09 2017 +0000
@@ -13,8 +13,8 @@
     "target_overrides": {
         "*": {
             "target.features_add": ["NANOSTACK", "THREAD_ROUTER", "COMMON_PAL"],
-            "mbed-mesh-api.thread-config-channel": 18,
-            "mbed-mesh-api.thread-config-panid": "0xBAAB",
+            "mbed-mesh-api.thread-config-channel": 12,
+            "mbed-mesh-api.thread-config-panid": "0xDEFA",
             "mbed-trace.enable": 0
         }
     }