Files
s23_time-attend-v1/secrets.h.example
Marco Gallegos fe0492a406 first commit
2025-12-24 16:54:11 -06:00

26 lines
811 B
Plaintext

// 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