Replies: 2 comments 1 reply
-
@CosticaPuntaru something like this might be useful in your automations? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Implemented at https://github.com/vmakeev/huawei_mesh_router/releases/tag/v0.7.4 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In #3, it was proposed to add sensors for the number of devices connected to the guest network.
Unfortunately, Huawei routers allow guest devices to connect only to the primary router, and not to the entire mesh network,
which makes it impossible to create triggers for the number of guest devices outside the coverage area of the primary router (because guest devices will simply not connect to the network).
Perhaps an alternative would be to create device groups at the component level.
In this scenario, the sensors for the number of connected devices will provide the following attributes:
sensor.huawei_mesh_3_clients_garage
guest_clients
: 0hilink_clients
: 0wireless_clients
: 1lan_clients
: 0wifi_2_4_clients
: 0wifi_5_clients
: 1group_home_owners_clients
: 1 // Michael's phonegroup_visitors_clients
: 0sensor.huawei_mesh_3_clients_living_room
guest_clients
: 0hilink_clients
: 0wireless_clients
: 2lan_clients
: 0wifi_2_4_clients
: 0wifi_5_clients
: 2group_home_owners_clients
: 1 // Michael's laptopgroup_visitors_clients
: 1 // Victoria's phonesensor.huawei_mesh_3_clients_primary_router
guest_clients
: 0hilink_clients
: 2wireless_clients
: 3lan_clients
: 0wifi_2_4_clients
: 0wifi_5_clients
: 3group_home_owners_clients
: 0group_visitors_clients
: 1 // Eugene's phoneThe list of groups and the mapping of MAC addresses of devices to specific groups should be placed in the component's settings.
The same device can appear in several groups (or should we call them tags?).
Beta Was this translation helpful? Give feedback.
All reactions