Telemetria WiFi+SD

This commit is contained in:
Alejandro Guerrero 2026-07-28 00:59:03 +02:00
parent 7c069efa14
commit 4b58b1ec97
6 changed files with 181 additions and 152 deletions

View file

@ -6,15 +6,25 @@
#include <ArduinoJson.h>
#include <vector>
//Librerías WiFi y UDP ---
// --- WiFi y UDP ---
#include <WiFi.h>
#include <WifiUdp.h>
#include <WiFiUdp.h>
//CONFIGURACIÓN WIFI Y FIREBASE
// --- SD ---
#include <SPI.h>
#include "SdFat.h"
// CONFIGURACION WIFI
#define WIFI_SSID "FGades"
#define WIFI_PASSWORD "GadesCPE"
//CONFIGURACIÓN WIFI Y FIREBASE
// CONFIGURACION UDP
#define UDP_PORT 4210
#endif
// CONFIGURACION SD (HSPI)
#define SD_CS 25
#define SD_MOSI 26
#define SD_SCK 27
#define SD_MISO 14
#endif