fixtSE
FixtSEFixtSE
Blog
Membership
Shop
Booking
About
Login

YoutubeInstagramRSSGithubPatreonPrivacy
Fixt â€ĸ Š 2025
Published: Oct 21, 2023—2 min read

Huawei Mesh Integration in Home Assistant

Written by: Fixt

If you're subscribed to our Channel
Login with your Google account to get our Smart Tutorial Experience!

TABLE OF CONTENTS
InstallationConfigurationDevice TagsRouter Presence DetectionUse it in an automation

Featured

Beginner DIY ESPHome mmWave Presence SensorBeginner DIY ESPHome mmWave Presence Sensor
Coral AI Person Detection with Home Assistant & FrigateCoral AI Person Detection with Home Assistant & Frigate

Related

Tags

Integration
Home-Assistant
Automation
Presence-Detection
Tutorial

If you like my work, please consider supporting me on Ko-fi! ☕🎉

← Back to the blog
Huawei Wifi Mesh 3 Image

Installation
#

Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.

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
#

Open your Home Assistant and show de integration menu

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
#

Open your Home Assistant instance and show your zones.

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

Tags

Integration
Home-Assistant
Automation
Presence-Detection
Tutorial
← Back to the blog

Featured

Beginner DIY ESPHome mmWave Presence SensorBeginner DIY ESPHome mmWave Presence Sensor
Coral AI Person Detection with Home Assistant & FrigateCoral AI Person Detection with Home Assistant & Frigate

Related

Tags

Integration
Home-Assistant
Automation
Presence-Detection
Tutorial