mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-04-03 08:15:30 +08:00
feat: filter miwifi.* devices (#564)
* feat: filter miwifi.* devices * feat: update log level * feat: filter special xiaomi router model, xiaomi.router.rd03
This commit is contained in:
parent
c0d100ce2b
commit
0566546a99
@ -531,9 +531,18 @@ class MIoTHttpClient:
|
|||||||
name = device.get('name', None)
|
name = device.get('name', None)
|
||||||
urn = device.get('spec_type', None)
|
urn = device.get('spec_type', None)
|
||||||
model = device.get('model', None)
|
model = device.get('model', None)
|
||||||
if did is None or name is None or urn is None or model is None:
|
if did is None or name is None:
|
||||||
_LOGGER.error(
|
_LOGGER.info(
|
||||||
'get_device_list, cloud, invalid device, %s', device)
|
'invalid device, cloud, %s', device)
|
||||||
|
continue
|
||||||
|
if urn is None or model is None:
|
||||||
|
_LOGGER.info(
|
||||||
|
'missing the urn|model field, cloud, %s', device)
|
||||||
|
continue
|
||||||
|
if did.startswith('miwifi.'):
|
||||||
|
# The miwifi.* routers defined SPEC functions, but none of them
|
||||||
|
# were implemented.
|
||||||
|
_LOGGER.info('ignore miwifi.* device, cloud, %s', did)
|
||||||
continue
|
continue
|
||||||
device_infos[did] = {
|
device_infos[did] = {
|
||||||
'did': did,
|
'did': did,
|
||||||
@ -634,7 +643,7 @@ class MIoTHttpClient:
|
|||||||
for did in dids:
|
for did in dids:
|
||||||
if did not in results:
|
if did not in results:
|
||||||
devices.pop(did, None)
|
devices.pop(did, None)
|
||||||
_LOGGER.error('get device info failed, %s', did)
|
_LOGGER.info('get device info failed, %s', did)
|
||||||
continue
|
continue
|
||||||
devices[did].update(results[did])
|
devices[did].update(results[did])
|
||||||
# Whether sub devices
|
# Whether sub devices
|
||||||
|
@ -59,5 +59,10 @@
|
|||||||
"1",
|
"1",
|
||||||
"5"
|
"5"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"urn:miot-spec-v2:device:router:0000A036:xiaomi-rd03": {
|
||||||
|
"services": [
|
||||||
|
"*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user