ISY994 Node Filter Update (#28155)

* Adding filters for keypad dimmers and smoke sensor

* ran black --fast as suggested

* Adding filters for keypad dimmers and smoke sensor

* ran black --fast as suggested
This commit is contained in:
randellhodges 2019-12-12 12:47:38 -06:00 committed by Martin Hjelmare
parent 7c42f4b45b
commit 9d662d6114

View File

@ -62,7 +62,7 @@ NODE_FILTERS = {
"binary_sensor": { "binary_sensor": {
"uom": [], "uom": [],
"states": [], "states": [],
"node_def_id": ["BinaryAlarm"], "node_def_id": ["BinaryAlarm", "BinaryAlarm_ADV"],
"insteon_type": ["16."], # Does a startswith() match; include the dot "insteon_type": ["16."], # Does a startswith() match; include the dot
}, },
"sensor": { "sensor": {
@ -112,6 +112,8 @@ NODE_FILTERS = {
"BallastRelayLampSwitch_ADV", "BallastRelayLampSwitch_ADV",
"RemoteLinc2", "RemoteLinc2",
"RemoteLinc2_ADV", "RemoteLinc2_ADV",
"KeypadDimmer",
"KeypadDimmer_ADV",
], ],
"insteon_type": ["1."], "insteon_type": ["1."],
}, },