-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mod get_status function #5
Comments
Ah si hai ragione, grazie. Appena ho un po di tempo faccio una prova sul mio antifurto per controllare che funzioni correttamente e poi implemento la modifica. |
Grazie per la risposta... |
@piopalladino how do you run this script?on ubuntu what should be installed? |
Adesso lo stato TRIGGERED non viene mostrato se l'allarme è stato disattivato. È possibile aggiungere lo stato dei singoli sensori su HA. Purtroppo però richiede cambiamenti sia su questa libreria (probabilmente non troppo difficile) e anche sull'integrazione su HA (più complicato). |
Grazie... ho visto... se vuoi ti posso dare una mano per l'implementazione su HA... adesso sto usando l'implementazione con node red... ma non mi piace perché utilizza lo scaping... se ti va di condividere la nuova implementazione di ialarm su HA. Garazie ancora e buonaserata |
Ciao Ludovico,
sto seguendo il tuo lavoro da tempo, e ci siamo sentiti anche via mail...
Controllando la funzione get_status ho notato che attivi il TRIGGERD solo in base alle zone_status
zone_status = self._send_request_list('/Root/Host/GetByWay', command)
if zone_status is not None:
for zone in zone_status:
if zone & self.ZONE_ALARM:
return self.TRIGGERED
ma le zone rimangono in allarme anche quando l'antifurto e stato disabilitato se prima e scattato (memoria intervento)
Pertanto dovresti inserire un IF a monte che consideri alarm_status = ARMED_AWAY OR alarm_status = ARMED_STAY
The text was updated successfully, but these errors were encountered: