mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 11:33:17 +02:00
20 lines
No EOL
367 B
C++
20 lines
No EOL
367 B
C++
#ifndef COMMON_LIBRARIES_HPP
|
|
#define COMMON_LIBRARIES_HPP
|
|
|
|
#include <Arduino.h>
|
|
#include "time.h"
|
|
#include <ArduinoJson.h>
|
|
#include <vector>
|
|
|
|
//Librerías WiFi y UDP ---
|
|
#include <WiFi.h>
|
|
#include <WifiUdp.h>
|
|
|
|
//CONFIGURACIÓN WIFI Y FIREBASE
|
|
#define WIFI_SSID "FGades"
|
|
#define WIFI_PASSWORD "GadesCPE"
|
|
|
|
//CONFIGURACIÓN WIFI Y FIREBASE
|
|
#define UDP_PORT 4210
|
|
|
|
#endif |