From 1bc6366051a626762f188cf14305040d61d04390 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 5 Oct 2016 10:58:06 -0400 Subject: [PATCH] Increase allowable polling intensity values (#3711) --- homeassistant/components/zwave/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zwave/__init__.py b/homeassistant/components/zwave/__init__.py index e32aff988d8..32d4f42c1a1 100644 --- a/homeassistant/components/zwave/__init__.py +++ b/homeassistant/components/zwave/__init__.py @@ -133,7 +133,7 @@ SET_CONFIG_PARAMETER_SCHEMA = vol.Schema({ CUSTOMIZE_SCHEMA = vol.Schema({ vol.Optional(CONF_POLLING_INTENSITY): - vol.All(cv.positive_int, vol.In([0, 1, 2])), + vol.All(cv.positive_int, vol.In([0, 1, 2, 3, 4, 5])), }) CONFIG_SCHEMA = vol.Schema({