Gateway con agregar controles mediante firebase

Dependencies:   mbed mbed-http ESP01 Pulse RFDecoder

Committer:
Thrillex13
Date:
Mon Sep 16 17:57:38 2019 +0000
Revision:
5:190b19129c4d
Parent:
1:cf6a75de25ce
Gateway con comunicacion a la app de android mediante firebase

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Thrillex13 1:cf6a75de25ce 1 /*
Thrillex13 1:cf6a75de25ce 2 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
Thrillex13 1:cf6a75de25ce 3 * SPDX-License-Identifier: Apache-2.0
Thrillex13 1:cf6a75de25ce 4 *
Thrillex13 1:cf6a75de25ce 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
Thrillex13 1:cf6a75de25ce 6 * not use this file except in compliance with the License.
Thrillex13 1:cf6a75de25ce 7 * You may obtain a copy of the License at
Thrillex13 1:cf6a75de25ce 8 *
Thrillex13 1:cf6a75de25ce 9 * http://www.apache.org/licenses/LICENSE-2.0
Thrillex13 1:cf6a75de25ce 10 *
Thrillex13 1:cf6a75de25ce 11 * Unless required by applicable law or agreed to in writing, software
Thrillex13 1:cf6a75de25ce 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Thrillex13 1:cf6a75de25ce 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Thrillex13 1:cf6a75de25ce 14 * See the License for the specific language governing permissions and
Thrillex13 1:cf6a75de25ce 15 * limitations under the License.
Thrillex13 1:cf6a75de25ce 16 *
Thrillex13 1:cf6a75de25ce 17 * This file is part of mbed TLS (https://tls.mbed.org)
Thrillex13 1:cf6a75de25ce 18 */
Thrillex13 1:cf6a75de25ce 19
Thrillex13 1:cf6a75de25ce 20 //#include "select-demo.h"
Thrillex13 1:cf6a75de25ce 21
Thrillex13 1:cf6a75de25ce 22 /* Enable entropy for devices with TRNG. This means entropy is disabled for all other targets. */
Thrillex13 1:cf6a75de25ce 23 /* Do **NOT** deploy this code in production on other targets! */
Thrillex13 1:cf6a75de25ce 24 /* See https://tls.mbed.org/kb/how-to/add-entropy-sources-to-entropy-pool */
Thrillex13 1:cf6a75de25ce 25 #if defined(DEVICE_TRNG)
Thrillex13 1:cf6a75de25ce 26 #undef MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
Thrillex13 1:cf6a75de25ce 27 #undef MBEDTLS_TEST_NULL_ENTROPY
Thrillex13 1:cf6a75de25ce 28 #endif