02-ago: [proyecto] vigilancia - Fase 1: sirena wail estilo Proteccion Civil (400-1000Hz, 8s) + Fase 2: titulo ALERTA rojo parpadeante en el teleprompter

This commit is contained in:
minguezsanzjuanjose
2026-08-02 15:11:11 +02:00
parent 0ad6dac79e
commit fbfc395f3b
4 changed files with 45 additions and 6 deletions

View File

@@ -61,6 +61,9 @@ VOZ_MENSAJE_CONOCIDO = os.getenv(
"VOZ_MENSAJE_CONOCIDO",
"{nombres}, ¿qué estás haciendo? No entres ahí.",
)
TV_TITULO = os.getenv("TV_TITULO", "ALERTA").strip()
TV_TITULO_COLOR = os.getenv("TV_TITULO_COLOR", "red").strip().lower()
TV_TITULO_PARPADEO = os.getenv("TV_TITULO_PARPADEO", "1") == "1"
ALEXA_APAGAR_TV_MONKEY = os.getenv("ALEXA_APAGAR_TV_MONKEY", "").strip()
ADB_PATH = os.getenv(
"ADB_PATH",
@@ -71,6 +74,7 @@ ADB_TV_IP = os.getenv("ADB_TV_IP", "192.168.50.16:5555")
GOOGLE_TV_APAGAR_VIA_ADB = os.getenv("GOOGLE_TV_APAGAR_VIA_ADB", "1") == "1"
GOOGLE_TV_PITIDO_ACTIVO = os.getenv("GOOGLE_TV_PITIDO_ACTIVO", "1") == "1"
GOOGLE_TV_ESPERA_SG = int(os.getenv("GOOGLE_TV_ESPERA_SG", "15"))
GOOGLE_TV_PITIDO_SG = float(os.getenv("GOOGLE_TV_PITIDO_SG", "6"))
GOOGLE_TV_PITIDO_SG = float(os.getenv("GOOGLE_TV_PITIDO_SG", "8"))
GOOGLE_TV_PITIDO_ESTILO = os.getenv("GOOGLE_TV_PITIDO_ESTILO", "wail")
GOOGLE_TV_REPETICIONES = int(os.getenv("GOOGLE_TV_REPETICIONES", "3"))
GOOGLE_TV_TEXTO_FINAL_SG = int(os.getenv("GOOGLE_TV_TEXTO_FINAL_SG", "30"))