Send the data of GR-PEACH_HVC-P2_sample to the cloud.

Dependencies:   AsciiFont GR-PEACH_video GraphicsFramework LCD_shield_config R_BSP USBHost_custom easy-connect-gr-peach

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

Note at the time of sample import

Please not check the "Update all libraries to the latest version" at the time of import.

Warning!

When exporting and using it, increase the following stack size.

mbed-os/features/FEATURE_LWIP/lwip-interface/lwipopts.h

#define TCPIP_THREAD_STACKSIZE      1024
->
#define TCPIP_THREAD_STACKSIZE      2048

Overview

This is a sample to send the analysis result of GR-PEACH_HVC-P2_sample to the cloud using mbed-client. Please refer to following for operation of HVC-P2.

Import programGR-PEACH_HVC-P2_sample

Sample to operate omron HVC-P2 on GR-PEACH.


Required hardware

Application setup

Client credentials

To register the application to mbed Device Connector, you need to create and set the client side certificate.

  1. Go to https://connector.mbed.com/ and log in with your mbed account
  2. On mbed Device Connector, go to https://connector.mbed.com/#credentials and click the Get my device security credentials button to get new credentials for your device.
  3. Replace the contents in security.h of this example with content copied above.

Ethernet settings

This sample uses Ethernet as the default connection type. To change the connection type, set WIFI_BP3595 in mbed_app.json:

mbed_app.json

"network-interface":{
    "help": "Options are ETHERNET, WIFI_ESP8266, WIFI_BP3595",
    "value": "ETHERNET"
},


To specify MAC address, add fllowing function to main.cpp. (When using Wifi, setting of MAC address is not necessary.)

Specify MAC address

// set mac address
void mbed_mac_address(char *mac) {
    mac[0] = 0x00;
    mac[1] = 0x02;
    mac[2] = 0xF7;
    mac[3] = 0xF0;
    mac[4] = 0x00;
    mac[5] = 0x00;
}


Wifi settings

This example can use BP3595 Wifi Interface for managing the wireless connectivity. To run this example using Wifi, you need:

  1. A BP3595 Wifi module ( https://developer.mbed.org/components/BP3595-for-GR-PEACH/ )
  2. Mount BP3595 onto GR-PEACH
  3. Close GR-PEACH's JP21 (https://developer.mbed.org/teams/Renesas/wiki/Jumper-settings-of-GR-PEACH)
  4. In the mbed_app.json file, change

mbed_app.json

"network-interface":{
    "help": "Options are ETHERNET, WIFI_ESP8266, WIFI_BP3595",
    "value": "WIFI_BP3595"
},


Provide your Wifi SSID and password here and leave \" in the beginning and end of your SSID and password as shown in the example below:

mbed_app.json

"wifi-ssid": {
    "help": "WiFi SSID",
    "value": "\"SSID\""
},
"wifi-password": {
    "help": "WIFI Password",
    "value": "\"Password\""
}


Specify the security type for connection to be used. When the security type is WPA2, you need to specify NSAPI_SECURITY_WAP as follows:

mbed_app.json

"wifi-security":{
    "help": "Options are NSAPI_SECURITY_WEP, NSAPI_SECURITY_WPA, NSAPI_SECURITY_WPA2, NSAPI_SECURITY_WPA_WPA2",
    "value": "NSAPI_SECURITY_WEP"
},

By default, NSAPI_SECURITY_WPA_WPA2 is specified here.

Application resources

This example exposes four resources listed below:

  1. 3202/0/5700. Recognition result from HVC-P2 (GET).
  2. 3201/0/5850. Blink function, blinks LED when executed (POST).
  3. 3201/0/5853. Blink pattern, used by the blink function to determine how to blink. In the format of 1000:500:1000:500:1000:500 (PUT).
  4. 3201/0/5855. Blink color, used by the blink function. Any of red, green, blue, cyan, yellow and magenta is acceptable (PUT).

For more info on how to get notifications when resource 1 changes, or how to use resource 2, 3 and 4, please look at

Import programGR-PEACH_mbed-connector-ZXingSample-node

Node.js based Web Application for mbed Device Connector specific to GR-PEACH_mbed-os-client-ZXingSample

# This is a Web Application for GR-PEACH_mbed-os-client-ZXingSample, but it can also be used for this sample.

Committer:
mbed_official
Date:
Wed Feb 15 08:00:11 2017 +0000
Revision:
63:c73f78fd7982
Parent:
45:b150e0aa009c
Integrate easy-connect, fix serial, fix warning (#176)

Integrate easy-connect
- we can remove all the external RF-drivers from main folder
- get easy-connect into use
- remove all the complicated network stuff

Fix serial - we don't need raw serial and we don't need to initialize it
if we set the right stuff to mbed_app.json (added). Plain printf() works
and it even does type checking now. (Points to Kevin Bracey on this).

Start the thread in a non-deprecated way using callback to remove one compiler
warning (again, points to Kevin Bracey).

Easy-connect ESP8266 TX/RX pins in different defines.
mbed-os-example-client has NEVER used 2 sets of WiFi pins, so need
to add a define to hack them into one set - otherwise it will not compile.

The cp command would not have worked if one would have changed
the compiler. Add UBLOX ODIN ETH config to be built as well,
now that we have figured out how to make the the ethernet work
on it.

Change also the WIFI to work with easy-connect. Easy-connect has 2 separate WIFIs,
so you have to choose between ESP8266 vs. ODIN. Thus, 2 config files are also needed,
one for ESP8266 and one for ODIN.

.
Commit copied from https://github.com/ARMmbed/mbed-os-example-client

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 45:b150e0aa009c 1 {
mbed_official 45:b150e0aa009c 2 "config": {
mbed_official 45:b150e0aa009c 3 "network-interface":{
mbed_official 63:c73f78fd7982 4 "help": "Options are ETHERNET, WIFI_ESP8266, WIFI_ODIN, MESH_LOWPAN_ND, MESH_THREAD",
mbed_official 63:c73f78fd7982 5 "value": "WIFI_ESP8266"
mbed_official 45:b150e0aa009c 6 },
mbed_official 45:b150e0aa009c 7 "wifi-ssid": {
mbed_official 45:b150e0aa009c 8 "help": "WiFi SSID",
mbed_official 45:b150e0aa009c 9 "value": "\"SSID\""
mbed_official 45:b150e0aa009c 10 },
mbed_official 45:b150e0aa009c 11 "wifi-password": {
mbed_official 45:b150e0aa009c 12 "help": "WiFi Password",
mbed_official 45:b150e0aa009c 13 "value": "\"Password\""
mbed_official 45:b150e0aa009c 14 },
mbed_official 45:b150e0aa009c 15 "wifi-tx": {
mbed_official 45:b150e0aa009c 16 "help": "TX pin for serial connection to external device",
mbed_official 45:b150e0aa009c 17 "value": "D1"
mbed_official 45:b150e0aa009c 18 },
mbed_official 45:b150e0aa009c 19 "wifi-rx": {
mbed_official 45:b150e0aa009c 20 "help": "RX pin for serial connection to external device",
mbed_official 45:b150e0aa009c 21 "value": "D0"
mbed_official 45:b150e0aa009c 22 }
mbed_official 45:b150e0aa009c 23 },
mbed_official 45:b150e0aa009c 24 "macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_mbed_client_config.h\""],
mbed_official 45:b150e0aa009c 25 "target_overrides": {
mbed_official 45:b150e0aa009c 26 "*": {
mbed_official 45:b150e0aa009c 27 "target.features_add": ["LWIP", "COMMON_PAL"],
mbed_official 63:c73f78fd7982 28 "platform.stdio-baud-rate": 115200,
mbed_official 63:c73f78fd7982 29 "platform.stdio-convert-newlines": true,
mbed_official 45:b150e0aa009c 30 "lwip.ipv4-enabled": true,
mbed_official 45:b150e0aa009c 31 "lwip.ipv6-enabled": false,
mbed_official 45:b150e0aa009c 32 "mbed-trace.enable": 0
mbed_official 45:b150e0aa009c 33 },
mbed_official 45:b150e0aa009c 34 "NUCLEO_F401RE": {
mbed_official 45:b150e0aa009c 35 "wifi-tx": "PA_11",
mbed_official 45:b150e0aa009c 36 "wifi-rx": "PA_12"
mbed_official 45:b150e0aa009c 37 },
mbed_official 45:b150e0aa009c 38 "NUCLEO_F411RE": {
mbed_official 45:b150e0aa009c 39 "wifi-tx": "PA_11",
mbed_official 45:b150e0aa009c 40 "wifi-rx": "PA_12"
mbed_official 45:b150e0aa009c 41 }
mbed_official 45:b150e0aa009c 42 }
mbed_official 45:b150e0aa009c 43 }