first commit

This commit is contained in:
Marco Gallegos
2025-12-24 16:54:11 -06:00
commit fe0492a406
13 changed files with 3019 additions and 0 deletions

25
secrets.h.example Normal file
View File

@@ -0,0 +1,25 @@
// Por favor, renombra este archivo a "secrets.h" y rellena tus datos.
// Este archivo NO se subirá a Git, protegiendo tu información.
#ifndef SECRETS_H
#define SECRETS_H
// ==========================================
// ⚙️ CONFIGURACIÓN DE CREDENCIALES
// ==========================================
// Red WiFi
const char* ssid = "TU_WIFI_SSID";
const char* password = "TU_WIFI_PASSWORD";
// Webhook y Time Server
const char* webhookUrl = "URL_DE_TU_WEBHOOK";
const char* timeServerUrl = "https://worldtimeapi.org/api/ip"; // Servidor público de ejemplo
// Nombre del dispositivo para la cabecera User-Agent (Identifica el origen)
const char* DEVICE_NAME = "Checador_Oficina_1";
// Zona Horaria (Ej: Monterrey UTC-6 -> -6 * 3600 = -21600)
const long timeZoneOffset = -21600;
#endif // SECRETS_H