Fix mysensors platforms version requirement (#5942)
* Notify and device tracker platforms require mysensors version 2.0 or greater.
This commit is contained in:
parent
9a5618fe96
commit
b6404d70ec
2 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,8 @@ def get_service(hass, config, discovery_info=None):
|
|||
return
|
||||
|
||||
for gateway in gateways:
|
||||
if float(gateway.protocol_version) < 2.0:
|
||||
continue
|
||||
pres = gateway.const.Presentation
|
||||
set_req = gateway.const.SetReq
|
||||
map_sv_types = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue