Increase allowable polling intensity values (#3711)

pull/3713/head
John 2016-10-05 10:58:06 -04:00 committed by John Arild Berentsen
parent 5d339fb141
commit 1bc6366051
1 changed files with 1 additions and 1 deletions

View File

@ -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({