Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Committer:
JimCarver
Date:
Fri Oct 12 21:22:49 2018 +0000
Revision:
0:6b753f761943
Initial commit

Who changed what in which revision?

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