Increase allowable polling intensity values (#3711)
This commit is contained in:
parent
5d339fb141
commit
1bc6366051
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ SET_CONFIG_PARAMETER_SCHEMA = vol.Schema({
|
||||||
|
|
||||||
CUSTOMIZE_SCHEMA = vol.Schema({
|
CUSTOMIZE_SCHEMA = vol.Schema({
|
||||||
vol.Optional(CONF_POLLING_INTENSITY):
|
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({
|
CONFIG_SCHEMA = vol.Schema({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue