-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecrets.ini.template
More file actions
20 lines (19 loc) · 868 Bytes
/
Copy pathsecrets.ini.template
File metadata and controls
20 lines (19 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# =============================================================
# secrets.ini
# =============================================================
# INSTRUCCIONES:
# 1. Copia este fichero y renombralo a: secrets.ini
# (en la raiz del proyecto, junto a platformio.ini)
# 2. Pon tu contrasena OTA real en ota_password.
# 3. NO subas secrets.ini a git (ya esta en .gitignore).
#
# PROPOSITO DE ESTE FICHERO:
# PlatformIO lo lee al hacer upload con los perfiles OTA
# (PROD_ota, TEST_ota) para autenticar la subida por red.
# El valor de ota_password DEBE coincidir con DEFAULT_OTA_PASSWORD
# definido en src/secrets.h, o la subida OTA fallara.
# =============================================================
[secrets]
ota_password = tu_password_ota
prod_ip = 192.168.1.101 ; IP del ESP32 en producción
test_ip = 192.168.1.103 ; IP del ESP32 de pruebas