Simple Mbed Cloud Client application using features of K64 & K66

Connect to Mbed Cloud!

This example was customized a bit for FRDM-K66 and FRDM-K64F.

It depends on having an SD Card plugged in for storage of credentials. It could be changed later to use a SPI flash or other storage on a shield or wired in.

The app keeps track of how many times switch 2 (SW2) is pressed. The value can be retrieved via a GET request to Mbed Cloud.

Also, it will blink a pattern based on milisecond (ms) timing values that can be sent from Mbed Cloud. The pattern can be sent with a PUT request and the blinking sequence can be triggered by a POST request.

Committer:
maclobdell
Date:
Tue Oct 09 22:08:16 2018 -0500
Revision:
15:df35a45db1cc
Parent:
6:254a7e7fbef1
remove sd driver.  its in mbed-os now.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MarceloSalazar 0:e13a8a944e25 1 /*
MarceloSalazar 0:e13a8a944e25 2 * Copyright (c) 2017 ARM Limited. All rights reserved.
MarceloSalazar 0:e13a8a944e25 3 * SPDX-License-Identifier: Apache-2.0
MarceloSalazar 0:e13a8a944e25 4 * Licensed under the Apache License, Version 2.0 (the License); you may
MarceloSalazar 0:e13a8a944e25 5 * not use this file except in compliance with the License.
MarceloSalazar 0:e13a8a944e25 6 * You may obtain a copy of the License at
MarceloSalazar 0:e13a8a944e25 7 *
MarceloSalazar 0:e13a8a944e25 8 * http://www.apache.org/licenses/LICENSE-2.0
MarceloSalazar 0:e13a8a944e25 9 *
MarceloSalazar 0:e13a8a944e25 10 * Unless required by applicable law or agreed to in writing, software
MarceloSalazar 0:e13a8a944e25 11 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
MarceloSalazar 0:e13a8a944e25 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
MarceloSalazar 0:e13a8a944e25 13 * See the License for the specific language governing permissions and
MarceloSalazar 0:e13a8a944e25 14 * limitations under the License.
MarceloSalazar 0:e13a8a944e25 15 */
MarceloSalazar 0:e13a8a944e25 16 #ifndef __MBED_CLOUD_DEV_CREDENTIALS_H__
MarceloSalazar 0:e13a8a944e25 17 #define __MBED_CLOUD_DEV_CREDENTIALS_H__
MarceloSalazar 0:e13a8a944e25 18
bridadan 6:254a7e7fbef1 19 #if MBED_CONF_APP_DEVELOPER_MODE == 1
bridadan 6:254a7e7fbef1 20 #error "Replace mbed_cloud_dev_credentials.c with your own developer cert."
bridadan 6:254a7e7fbef1 21 #endif
bridadan 6:254a7e7fbef1 22
MarceloSalazar 0:e13a8a944e25 23 #include <inttypes.h>
MarceloSalazar 0:e13a8a944e25 24
bridadan 6:254a7e7fbef1 25 const char MBED_CLOUD_DEV_BOOTSTRAP_ENDPOINT_NAME[] = "";
bridadan 6:254a7e7fbef1 26 const char MBED_CLOUD_DEV_ACCOUNT_ID[] = "";
bridadan 6:254a7e7fbef1 27 const char MBED_CLOUD_DEV_BOOTSTRAP_SERVER_URI[] = "";
MarceloSalazar 0:e13a8a944e25 28
bridadan 6:254a7e7fbef1 29 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE[] =
bridadan 6:254a7e7fbef1 30 { 0x0 };
MarceloSalazar 0:e13a8a944e25 31
bridadan 6:254a7e7fbef1 32 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE[] =
bridadan 6:254a7e7fbef1 33 { 0x0 };
MarceloSalazar 0:e13a8a944e25 34
bridadan 6:254a7e7fbef1 35 const uint8_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY[] =
bridadan 6:254a7e7fbef1 36 { 0x0 };
MarceloSalazar 0:e13a8a944e25 37
MarceloSalazar 0:e13a8a944e25 38 const char MBED_CLOUD_DEV_MANUFACTURER[] = "dev_manufacturer";
MarceloSalazar 0:e13a8a944e25 39
MarceloSalazar 0:e13a8a944e25 40 const char MBED_CLOUD_DEV_MODEL_NUMBER[] = "dev_model_num";
MarceloSalazar 0:e13a8a944e25 41
MarceloSalazar 0:e13a8a944e25 42 const char MBED_CLOUD_DEV_SERIAL_NUMBER[] = "0";
MarceloSalazar 0:e13a8a944e25 43
MarceloSalazar 0:e13a8a944e25 44 const char MBED_CLOUD_DEV_DEVICE_TYPE[] = "dev_device_type";
MarceloSalazar 0:e13a8a944e25 45
MarceloSalazar 0:e13a8a944e25 46 const char MBED_CLOUD_DEV_HARDWARE_VERSION[] = "dev_hardware_version";
MarceloSalazar 0:e13a8a944e25 47
MarceloSalazar 0:e13a8a944e25 48 const uint32_t MBED_CLOUD_DEV_MEMORY_TOTAL_KB = 0;
MarceloSalazar 0:e13a8a944e25 49 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_CERTIFICATE);
MarceloSalazar 0:e13a8a944e25 50 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_SERVER_ROOT_CA_CERTIFICATE);
MarceloSalazar 0:e13a8a944e25 51 const uint32_t MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY_SIZE = sizeof(MBED_CLOUD_DEV_BOOTSTRAP_DEVICE_PRIVATE_KEY);
MarceloSalazar 0:e13a8a944e25 52
MarceloSalazar 0:e13a8a944e25 53 #endif //__MBED_CLOUD_DEV_CREDENTIALS_H__