mirror of
https://github.com/marcogll/s23_time-attend-v1.git
synced 2026-01-13 05:15:14 +00:00
26 lines
811 B
Plaintext
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
|