mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 11:33:17 +02:00
Archivos iniciales añadidos
This commit is contained in:
parent
7b2267494e
commit
dd67d2afdd
8 changed files with 805 additions and 0 deletions
22
Firmware/G26-Telemetria/include/common_libraries.hpp
Normal file
22
Firmware/G26-Telemetria/include/common_libraries.hpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef COMMON_LIBRARIES_HPP
|
||||
#define COMMON_LIBRARIES_HPP
|
||||
|
||||
#include <Arduino.h>
|
||||
#include "time.h"
|
||||
#include <ArduinoJson.h>
|
||||
#include <vector>
|
||||
|
||||
//Librerías WiFi y HTTP ---
|
||||
#include <WiFi.h>
|
||||
#include <HTTPClient.h>
|
||||
#include <WiFiClientSecure.h>
|
||||
|
||||
// --- CONFIGURACIÓN WIFI Y FIREBASE ---
|
||||
#define WIFI_SSID "test"
|
||||
#define WIFI_PASSWORD "12345678"
|
||||
|
||||
#define FIREBASE_HOST "https://iot-formula-gades-default-rtdb.europe-west1.firebasedatabase.app"
|
||||
// La ruta dentro de la base de datos donde guardaremos la temperatura
|
||||
#define FIREBASE_PATH "/telemetria/temperatura.json"
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue