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:
Fri Jul 07 14:59:29 2017 +0900
Revision:
0:8373b6833bde
Child:
2:a191fff7103b
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Osamu Nakamura 0:8373b6833bde 1 #ifndef IOT_READY_PROCESSING_H
Osamu Nakamura 0:8373b6833bde 2 #define IOT_READY_PROCESSING_H
Osamu Nakamura 0:8373b6833bde 3
Osamu Nakamura 0:8373b6833bde 4 #include "HVCApi.h"
Osamu Nakamura 0:8373b6833bde 5 #include "HVCDef.h"
Osamu Nakamura 0:8373b6833bde 6 #include "clib_drivers.h"
Osamu Nakamura 0:8373b6833bde 7
Osamu Nakamura 0:8373b6833bde 8 #define DETECT_MAX 35
Osamu Nakamura 0:8373b6833bde 9 #define WAIT_TIME 5000
Osamu Nakamura 0:8373b6833bde 10
Osamu Nakamura 0:8373b6833bde 11 #define USE_SENSOR_SHIELD
Osamu Nakamura 0:8373b6833bde 12 #define USE_HVC_P2
Osamu Nakamura 0:8373b6833bde 13
Osamu Nakamura 0:8373b6833bde 14 typedef struct {
Osamu Nakamura 0:8373b6833bde 15 INT32 score_neutral;
Osamu Nakamura 0:8373b6833bde 16 INT32 score_anger;
Osamu Nakamura 0:8373b6833bde 17 INT32 score_happiness;
Osamu Nakamura 0:8373b6833bde 18 INT32 score_surprise;
Osamu Nakamura 0:8373b6833bde 19 INT32 score_sadness;
Osamu Nakamura 0:8373b6833bde 20 } IotReadyExpression_t;
Osamu Nakamura 0:8373b6833bde 21
Osamu Nakamura 0:8373b6833bde 22 typedef struct {
Osamu Nakamura 0:8373b6833bde 23 int x;
Osamu Nakamura 0:8373b6833bde 24 int y;
Osamu Nakamura 0:8373b6833bde 25 int z;
Osamu Nakamura 0:8373b6833bde 26 } Accelerometer_t;
Osamu Nakamura 0:8373b6833bde 27
Osamu Nakamura 0:8373b6833bde 28 typedef struct {
Osamu Nakamura 0:8373b6833bde 29 int red;
Osamu Nakamura 0:8373b6833bde 30 int green;
Osamu Nakamura 0:8373b6833bde 31 int blue;
Osamu Nakamura 0:8373b6833bde 32 int alpha;
Osamu Nakamura 0:8373b6833bde 33 } Color_t;
Osamu Nakamura 0:8373b6833bde 34
Osamu Nakamura 0:8373b6833bde 35 /* Face data detected by HVC-P2 to send to IOT Platform */
Osamu Nakamura 0:8373b6833bde 36 typedef struct {
Osamu Nakamura 0:8373b6833bde 37 AGE_RESULT age; /* Age Estimation result */
Osamu Nakamura 0:8373b6833bde 38 GENDER_RESULT gender; /* Gender Estimation result */
Osamu Nakamura 0:8373b6833bde 39 IntBoxType face_rectangle; /* rectangle of face detection result */
Osamu Nakamura 0:8373b6833bde 40 IotReadyExpression_t scores; /* Score of 5 expression */
Osamu Nakamura 0:8373b6833bde 41 } result_hvcp2_fd_t;
Osamu Nakamura 0:8373b6833bde 42
Osamu Nakamura 0:8373b6833bde 43 /* Body data detected by HVC-P2 to send to IOT Platform */
Osamu Nakamura 0:8373b6833bde 44 typedef struct {
Osamu Nakamura 0:8373b6833bde 45 IntBoxType body_rectangle; /* rectangle of body detection result */
Osamu Nakamura 0:8373b6833bde 46 } result_hvcp2_bd_t;
Osamu Nakamura 0:8373b6833bde 47
Osamu Nakamura 0:8373b6833bde 48 /* Data detected by SENSORSHIELD-EVK-001 to send to IOT Platform */
Osamu Nakamura 0:8373b6833bde 49 typedef struct {
Osamu Nakamura 0:8373b6833bde 50 int Temperature;
Osamu Nakamura 0:8373b6833bde 51 int Atmosphere;
Osamu Nakamura 0:8373b6833bde 52 Accelerometer_t Accelerometer;
Osamu Nakamura 0:8373b6833bde 53 Color_t Color;
Osamu Nakamura 0:8373b6833bde 54 } result_sensor_shield_t;
Osamu Nakamura 0:8373b6833bde 55
Osamu Nakamura 0:8373b6833bde 56 #define _DEBUG
Osamu Nakamura 0:8373b6833bde 57 #ifdef _DEBUG
Osamu Nakamura 0:8373b6833bde 58 extern Serial pc;
Osamu Nakamura 0:8373b6833bde 59 #define DEBUG_PRINT(...) pc.printf(__VA_ARGS__)
Osamu Nakamura 0:8373b6833bde 60 #else
Osamu Nakamura 0:8373b6833bde 61 #define DEBUG_PRINT(...)
Osamu Nakamura 0:8373b6833bde 62 #endif
Osamu Nakamura 0:8373b6833bde 63
Osamu Nakamura 0:8373b6833bde 64 extern result_hvcp2_fd_t result_hvcp2_fd[DETECT_MAX];
Osamu Nakamura 0:8373b6833bde 65 extern result_hvcp2_bd_t result_hvcp2_bd[DETECT_MAX];
Osamu Nakamura 0:8373b6833bde 66 extern uint32_t result_hvcp2_bd_cnt;
Osamu Nakamura 0:8373b6833bde 67 extern uint32_t result_hvcp2_fd_cnt;
Osamu Nakamura 0:8373b6833bde 68
Osamu Nakamura 0:8373b6833bde 69 extern result_sensor_shield_t result_sensorshield;
Osamu Nakamura 0:8373b6833bde 70 extern Semaphore iot_ready_semaphore;
Osamu Nakamura 0:8373b6833bde 71 extern int semaphore_wait_ret;
Osamu Nakamura 0:8373b6833bde 72
Osamu Nakamura 0:8373b6833bde 73 #endif