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:
Yogesh Pande
Date:
Mon Jul 25 16:32:20 2016 +0300
Revision:
0:7d5ec759888b
Update example home repo at https://github.com/ARMmbed/mbed-os-example-client

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Yogesh Pande 0:7d5ec759888b 1 /*
Yogesh Pande 0:7d5ec759888b 2 * Copyright (c) 2016 ARM Limited. All rights reserved.
Yogesh Pande 0:7d5ec759888b 3 * SPDX-License-Identifier: Apache-2.0
Yogesh Pande 0:7d5ec759888b 4 * Licensed under the Apache License, Version 2.0 (the License); you may
Yogesh Pande 0:7d5ec759888b 5 * not use this file except in compliance with the License.
Yogesh Pande 0:7d5ec759888b 6 * You may obtain a copy of the License at
Yogesh Pande 0:7d5ec759888b 7 *
Yogesh Pande 0:7d5ec759888b 8 * http://www.apache.org/licenses/LICENSE-2.0
Yogesh Pande 0:7d5ec759888b 9 *
Yogesh Pande 0:7d5ec759888b 10 * Unless required by applicable law or agreed to in writing, software
Yogesh Pande 0:7d5ec759888b 11 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
Yogesh Pande 0:7d5ec759888b 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Yogesh Pande 0:7d5ec759888b 13 * See the License for the specific language governing permissions and
Yogesh Pande 0:7d5ec759888b 14 * limitations under the License.
Yogesh Pande 0:7d5ec759888b 15 */
Yogesh Pande 0:7d5ec759888b 16 #ifndef MBED_CLIENT_CONFIG_H
Yogesh Pande 0:7d5ec759888b 17 #define MBED_CLIENT_CONFIG_H
Yogesh Pande 0:7d5ec759888b 18
Yogesh Pande 0:7d5ec759888b 19
Yogesh Pande 0:7d5ec759888b 20 // Defines the number of times client should try re-connection towards
Yogesh Pande 0:7d5ec759888b 21 // Server in case of connectivity loss , also defines the number of CoAP
Yogesh Pande 0:7d5ec759888b 22 // re-transmission attempts.Default value is 3
Yogesh Pande 0:7d5ec759888b 23 #define M2M_CLIENT_RECONNECTION_COUNT 3
Yogesh Pande 0:7d5ec759888b 24
Yogesh Pande 0:7d5ec759888b 25 // Defines the interval (in seconds) in which client should try re-connection towards
Yogesh Pande 0:7d5ec759888b 26 // Server in case of connectivity loss , also use the same interval for CoAP
Yogesh Pande 0:7d5ec759888b 27 // re-transmission attempts. Default value is 5 seconds
Yogesh Pande 0:7d5ec759888b 28 #define M2M_CLIENT_RECONNECTION_INTERVAL 5
Yogesh Pande 0:7d5ec759888b 29
Yogesh Pande 0:7d5ec759888b 30 // Defines the keep-alive interval (in seconds) in which client should send keep alive
Yogesh Pande 0:7d5ec759888b 31 // pings to server while connected through TCP mode. Default value is 300 seconds
Yogesh Pande 0:7d5ec759888b 32 #define M2M_CLIENT_TCP_KEEPALIVE_TIME 300
Yogesh Pande 0:7d5ec759888b 33
Yogesh Pande 0:7d5ec759888b 34 // Defines the maximum CoAP messages that client can hold, maximum value is 6
Yogesh Pande 0:7d5ec759888b 35 #define SN_COAP_DUPLICATION_MAX_MSGS_COUNT 2
Yogesh Pande 0:7d5ec759888b 36
Yogesh Pande 0:7d5ec759888b 37 // Defines the size of blockwise CoAP messages that client can handle.
Yogesh Pande 0:7d5ec759888b 38 // The values that can be defined uust be 2^x and x is at least 4.
Yogesh Pande 0:7d5ec759888b 39 // Suitable values: 0, 16, 32, 64, 128, 256, 512 and 1024
Yogesh Pande 0:7d5ec759888b 40 #define SN_COAP_MAX_BLOCKWISE_PAYLOAD_SIZE 1024
Yogesh Pande 0:7d5ec759888b 41
Yogesh Pande 0:7d5ec759888b 42 // Many pure LWM2M servers doen't accept 'obs' text in registration message.
Yogesh Pande 0:7d5ec759888b 43 // While using Client against such servers, this flag can be set to define to
Yogesh Pande 0:7d5ec759888b 44 // disable client sending 'obs' text for observable resources.
Yogesh Pande 0:7d5ec759888b 45 #undef COAP_DISABLE_OBS_FEATURE
Yogesh Pande 0:7d5ec759888b 46
Yogesh Pande 0:7d5ec759888b 47 // Disable Bootstrap functionality in client in order to reduce code size, if bootstrap
Yogesh Pande 0:7d5ec759888b 48 // functionality is not required.
Yogesh Pande 0:7d5ec759888b 49 #undef M2M_CLIENT_DISABLE_BOOTSTRAP_FEATURE
Yogesh Pande 0:7d5ec759888b 50
Yogesh Pande 0:7d5ec759888b 51 #endif // MBED_CLIENT_CONFIG_H
Yogesh Pande 0:7d5ec759888b 52