Sample program for communicating with Fujitsuu IoT Platform using HTTP

Dependencies:   AsciiFont GR-PEACH_video GraphicsFramework LCD_shield_config R_BSP USBHost_custom easy-connect-gr-peach mbed-http picojson BM1383GLV KX022 rohm-sensor-hal rohm-bh1745

Overview

This sample program shows how to send the cognitive data and sensing data gathered by Omron HVC-P2 and Rohm Sensor Shield respectively to IoT Platform managed by FUJITSU ( http://jp.fujitsu.com/solutions/cloud/k5/function/paas/iot-platform/ ).

Required Hardware

Application Setup

  1. Configure the connection type. For details, please refer to the following link:
    https://developer.mbed.org/teams/Renesas/code/GR-PEACH_IoT_Platform_HTTP_sample/wiki/Connection-Type
  2. Configure Ethernet settings. For details, please refer to the following link:
    https://developer.mbed.org/teams/Renesas/code/GR-PEACH_IoT_Platform_HTTP_sample/wiki/Ethernet-settings
  3. Set up the Access Code of resource where the gathered data would be stored. For details on Access Code, please refer to the following links:
    https://iot-docs.jp-east-1.paas.cloud.global.fujitsu.com/en/manual/userguide_en.pdf
    https://iot-docs.jp-east-1.paas.cloud.global.fujitsu.com/en/manual/apireference_en.pdf
    https://iot-docs.jp-east-1.paas.cloud.global.fujitsu.com/en/manual/portalmanual_en.pdf
  4. Set up URI for the resource where the gathered data would be stored. For details, please refer to the following link:
    https://iot-docs.jp-east-1.paas.cloud.global.fujitsu.com/en/manual/userguide_en.pdf
    https://iot-docs.jp-east-1.paas.cloud.global.fujitsu.com/en/manual/apireference_en.pdf

Building Example

  1. Import this sample program onto mbed Compiler
  2. Configure the program in accordance with the description of Application Setup above
  3. Compile the sample program
  4. Plug the Ethernet cable into GR-PEACH if you would like Ethernet mode
  5. Plug micro-USB cable into the OpenSDA port which lies on the next to the RESET button
  6. Copy the binary previously downloaded to your PC to GR-PEACH in order to flash this program. When the copy is successfully completed, the drive named MBED should be re-mounted automatically
  7. Press the RESET button on the board to run the sample application

Data Format sent to IoT Platform

In this sample program, the cognitive data and sensing data are serialized into the following JSON format using picojson (https://developer.mbed.org/users/mimil/code/picojson/):

  • Face detection data

{
    "RecordType": "HVC-P2(face)",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "Age": xxx,
    "FaceRectangle": {
        "Height": xxx,
        "Left": xxx,
        "Top": xxx,
        "Width": xxx
    },
    "Gender": xxx,
    "Scores": {
        "Anger": xxx,
        "Happiness": xxx,
        "Neutral": xxx,
        "Sadness": xxx,
        "Surprise": xxx
    }
}
  • Body detection data

{
    "RecodeType": "HVC-P2(body)",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "BodyRectangle": {
        "Height": xxx,
        "Left": xxx,
        "Top": xxx,
        "Width": xxx
    }
}
  • Accelerometer data

{
    "RecodeType": "Accelerometer",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "data": [ acceleratoin(x-direction), acceleration(y-direction), acceleration(z-direction), null, null, null ]
}

Note that data[0], data[1] and data[2] are filled with the acceleration data in x, y and z direction respectively, and the remaining elements are filled with null.

  • Atmosphere data

{
    "RecodeType": "Atmosphere",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "data": [ atmosphere data, null, null, null, null, null ]
}

Note that data[0] is filled with atmosphere data, and the remaining elements are filled with null.

  • Color sensor data

{
    "RecodeType": "Color",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "data": [ Red, Green, Blue, Alpha, null, null]
}

Note that data[0], data[1], data[2] and data[3] are filled with Red, Green, Blue and Alpha elements of color respectively, and the remaining elements are filled with null.

  • Temperature data

{
    "RecodeType": "Temperature",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "data": [ Temperature, null, null, null, null, null ]
}

Note that data[0] is filled with temperature data, the remaining elements are filled with null.

  • Geomagnetism

{
    "RecodeType": "Geomagnetism",
    "id": "<GR-PEACH ID>-<Sensor ID>",
    "data": [ geomagnetism(x-direction), geomagnetism(y-direction), geomagnetism(z-direction), null, null, null]
}

Note that data[0], data[1] and data[2] are filled with the geomagnetism data in x, y and z direction respectively, and the remaining elements are filled with null.

Committer:
Osamu Nakamura
Date:
Thu Apr 12 19:04:23 2018 +0900
Revision:
7:9ae73f85dc04
Parent:
0:8373b6833bde
Update BM1422AGMV driver so that it can be compiled by ARMCC

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Osamu Nakamura 0:8373b6833bde 1 /*
Osamu Nakamura 0:8373b6833bde 2 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
Osamu Nakamura 0:8373b6833bde 3 * SPDX-License-Identifier: Apache-2.0
Osamu Nakamura 0:8373b6833bde 4 *
Osamu Nakamura 0:8373b6833bde 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
Osamu Nakamura 0:8373b6833bde 6 * not use this file except in compliance with the License.
Osamu Nakamura 0:8373b6833bde 7 * You may obtain a copy of the License at
Osamu Nakamura 0:8373b6833bde 8 *
Osamu Nakamura 0:8373b6833bde 9 * http://www.apache.org/licenses/LICENSE-2.0
Osamu Nakamura 0:8373b6833bde 10 *
Osamu Nakamura 0:8373b6833bde 11 * Unless required by applicable law or agreed to in writing, software
Osamu Nakamura 0:8373b6833bde 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Osamu Nakamura 0:8373b6833bde 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Osamu Nakamura 0:8373b6833bde 14 * See the License for the specific language governing permissions and
Osamu Nakamura 0:8373b6833bde 15 * limitations under the License.
Osamu Nakamura 0:8373b6833bde 16 *
Osamu Nakamura 0:8373b6833bde 17 * This file is part of mbed TLS (https://tls.mbed.org)
Osamu Nakamura 0:8373b6833bde 18 */
Osamu Nakamura 0:8373b6833bde 19
Osamu Nakamura 0:8373b6833bde 20 #include "select-demo.h"
Osamu Nakamura 0:8373b6833bde 21
Osamu Nakamura 0:8373b6833bde 22 /* Enable entropy for K64F and K22F. This means entropy is disabled for all other targets. */
Osamu Nakamura 0:8373b6833bde 23 /* Do **NOT** deploy this code in production on other targets! */
Osamu Nakamura 0:8373b6833bde 24 /* See https://tls.mbed.org/kb/how-to/add-entropy-sources-to-entropy-pool */
Osamu Nakamura 0:8373b6833bde 25 #if defined(TARGET_K64F) || defined(TARGET_K22F)
Osamu Nakamura 0:8373b6833bde 26 #undef MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
Osamu Nakamura 0:8373b6833bde 27 #undef MBEDTLS_TEST_NULL_ENTROPY
Osamu Nakamura 0:8373b6833bde 28 #endif
Osamu Nakamura 0:8373b6833bde 29
Osamu Nakamura 0:8373b6833bde 30 #if DEMO == DEMO_HTTPS
Osamu Nakamura 0:8373b6833bde 31
Osamu Nakamura 0:8373b6833bde 32 #if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && \
Osamu Nakamura 0:8373b6833bde 33 !defined(MBEDTLS_ENTROPY_NV_SEED) && !defined(MBEDTLS_TEST_NULL_ENTROPY)
Osamu Nakamura 0:8373b6833bde 34 #error "This hardware does not have an entropy source."
Osamu Nakamura 0:8373b6833bde 35 #endif /* !MBEDTLS_ENTROPY_HARDWARE_ALT && !MBEDTLS_ENTROPY_NV_SEED &&
Osamu Nakamura 0:8373b6833bde 36 * !MBEDTLS_TEST_NULL_ENTROPY */
Osamu Nakamura 0:8373b6833bde 37
Osamu Nakamura 0:8373b6833bde 38 #if !defined(MBEDTLS_SHA1_C)
Osamu Nakamura 0:8373b6833bde 39 #define MBEDTLS_SHA1_C
Osamu Nakamura 0:8373b6833bde 40 #endif /* !MBEDTLS_SHA1_C */
Osamu Nakamura 0:8373b6833bde 41
Osamu Nakamura 0:8373b6833bde 42 #if !defined(MBEDTLS_RSA_C)
Osamu Nakamura 0:8373b6833bde 43 #define MBEDTLS_RSA_C
Osamu Nakamura 0:8373b6833bde 44 #endif /* !MBEDTLS_RSA_C */
Osamu Nakamura 0:8373b6833bde 45
Osamu Nakamura 0:8373b6833bde 46 /*
Osamu Nakamura 0:8373b6833bde 47 * This value is sufficient for handling 2048 bit RSA keys.
Osamu Nakamura 0:8373b6833bde 48 *
Osamu Nakamura 0:8373b6833bde 49 * Set this value higher to enable handling larger keys, but be aware that this
Osamu Nakamura 0:8373b6833bde 50 * will increase the stack usage.
Osamu Nakamura 0:8373b6833bde 51 */
Osamu Nakamura 0:8373b6833bde 52 #define MBEDTLS_MPI_MAX_SIZE 1024
Osamu Nakamura 0:8373b6833bde 53
Osamu Nakamura 0:8373b6833bde 54 #define MBEDTLS_MPI_WINDOW_SIZE 1
Osamu Nakamura 0:8373b6833bde 55
Osamu Nakamura 0:8373b6833bde 56 #endif
Osamu Nakamura 0:8373b6833bde 57