![Huawei Wifi Mesh 3 Image](/_next/image?url=%2Fstatic%2Fimages%2Fhuawei-mesh-integration%2Fhuawei_mesh.webp&w=3840&q=75)
Installation#
You can use this button to be redirected to the download page. It will open the repository's page in HACS.
Supported devices
Using the affiliate links below helps support the channel and all the content I create đđ
- Huawei WiFi Mesh 3: aliexpress
- Huawei WiFi Mesh 7: aliexpress
- Huawei WiFi AX3 Dual-core: aliexpress
- Huawei WiFi AX3 Quad-core: aliexpress
You can find the documentation here.
Configuration#
Device Tags#
Allows you to set tags to group devices and use it in your automations.
(Ej. # of first_tag devices connected to the router)
You can find the documentation here
Example
config/.storage/huawei_mesh_<long_config_id>_tags
{
"version": 1,
"minor_version": 1,
"key": "huawei_mesh_<long_config_id>_tags",
"data": {
"first_tag": [
"00:11:22:33:44:55",
"A0:B1:C2:D3:E4:F5",
"F5:E4:D3:C2:B1:A0"
],
"second_tag": [
"00:11:22:33:44:55",
"A9:B8:C7:D6:E5:F4"
]
}
}
Router Presence Detection#
Use it in an automation#
Disable Facebook Access at night
alias: Disable facebook at night
description: ""
trigger:
- platform: time
at: "22:00:00"
- platform: time
at: "09:00:00"
condition: []
action:
- choose:
- conditions:
- condition: time
after: "21:59:00"
sequence:
- service: switch.turn_on
data: {}
target:
entity_id: switch.huawei_router_url_filter_facebook_com
default:
- service: switch.turn_off
data: {}
target:
entity_id: switch.huawei_router_url_filter_facebook_com
mode: single
Level Up your Presence Detection Blueprint here