mbed client example for mbed connect asia 2016

Dependencies:   simple-mbed-client

Fork of simple-mbed-client-example by sandbox

mbed_app.json

Committer:
mbed_demo
Date:
2016-12-05
Revision:
36:5971ce0b1ea4
Parent:
34:1e8d914a2876

File content as of revision 36:5971ce0b1ea4:

{
    "config": {
        "network-interface":{
            "help": "options are ETHERNET,WIFI_ESP8266,MESH_LOWPAN_ND,MESH_THREAD",
            "value": "ETHERNET"
        },
        "mesh_radio_type": {
        	"help": "options are ATMEL, MCR20",
        	"value": "ATMEL"
        },
        "esp8266-tx": {
            "help": "Pin used as TX (connects to ESP8266 RX)",
            "value": "D1"
        },
        "esp8266-rx": {
            "help": "Pin used as RX (connects to ESP8266 TX)",
            "value": "D0"
        },
        "esp8266-ssid": {
            "value": "\"SSID\""
        },
        "esp8266-password": {
            "value": "\"Password\""
        },
        "esp8266-debug": {
            "value": true
        },
        "button": {
            "help": "Pin which you'll use as button (can be overriden per target below)",
            "value": "BUTTON1"
        },
        "builtin_led_on": {
            "help": "Value to write to built-in LEDs to turn them on",
            "value": 1,
            "macro_name": "BUILTIN_LED_ON"
        },
        "builtin_led_off": {
            "help": "Value to write to built-in LEDs to turn them off",
            "value": 0,
            "macro_name": "BUILTIN_LED_OFF"
        }
    },
    "macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_mbed_client_config.h\""],
    "target_overrides": {
        "*": {
            "target.features_add": ["NANOSTACK", "LOWPAN_ROUTER", "COMMON_PAL"],
            "mbed-mesh-api.6lowpan-nd-channel-page": 0,
            "mbed-mesh-api.6lowpan-nd-channel": 12,
            "mbed-trace.enable": 0
        },
        "K64F": {
            "button": "SW2",
            "builtin_led_on": 0,
            "builtin_led_off": 1
        },
        "HEXIWEAR": {
            "button": "PTA12",
            "esp8266-tx": "PTD3",
            "esp8266-rx": "PTD2"
        },
        "NUCLEO_F401RE": {
            "button": "USER_BUTTON",
            "esp8266-tx": "D8",
            "esp8266-rx": "D2"
        },
        "NUCLEO_F411RE": {
            "button": "USER_BUTTON",
            "esp8266-tx": "D8",
            "esp8266-rx": "D2"
        },
        "NUMAKER_PFM_NUC472": {
            "button": "SW1",
            "builtin_led_on": 0,
            "builtin_led_off": 1
        }
    }
}