From 91a5a9ae6f2fd2e3f69c6ca3a1bd3aaf91fcd38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Rudowicz?= Date: Sun, 1 Mar 2026 16:09:32 +0100 Subject: [PATCH] Poll for partitions fire alarm --- satel.go | 1 + 1 file changed, 1 insertion(+) diff --git a/satel.go b/satel.go index 5fc72c8..82cb0dd 100644 --- a/satel.go +++ b/satel.go @@ -71,6 +71,7 @@ func NewConfig(conn net.Conn, config Config) *Satel { for { s.commandQueue <- callCommandAndRetrieveResult(SatelCommand_armedPartitionsReally, s) s.commandQueue <- callCommandAndRetrieveResult(SatelCommand_partitionsAlarm, s) + s.commandQueue <- callCommandAndRetrieveResult(SatelCommand_partitionsFireAlarm, s) time.Sleep(config.PoolingInterval) } }()