From 454bea4237e79357948b5ef5f106f3e3eef4ec9f Mon Sep 17 00:00:00 2001 From: Geoff Norton Date: Tue, 20 Jan 2015 02:57:50 +0000 Subject: [PATCH] Reduce the timer interval to make sensors useful --- homeassistant/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/__init__.py b/homeassistant/__init__.py index 0ed4b2b2fd2..1556547b643 100644 --- a/homeassistant/__init__.py +++ b/homeassistant/__init__.py @@ -27,7 +27,7 @@ import homeassistant.util as util DOMAIN = "homeassistant" # How often time_changed event should fire -TIMER_INTERVAL = 10 # seconds +TIMER_INTERVAL = 3 # seconds # How long we wait for the result of a service call SERVICE_CALL_LIMIT = 10 # seconds