Skip to content

Commit

Permalink
All advanced options are now disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
vmakeev committed Jan 5, 2023
1 parent d1921f5 commit dd138fa
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Home Assistant custom component for control Huawei mesh routers over LAN.

[![Release](https://img.shields.io/github/v/release/vmakeev/huawei_mesh_router)](https://github.com/vmakeev/huawei_mesh_router/releases/latest)
[![ReleaseDate](https://img.shields.io/github/release-date/vmakeev/huawei_mesh_router)](https://github.com/vmakeev/huawei_mesh_router/releases/latest)
![Maintained](https://img.shields.io/maintenance/yes/2022)
![Maintained](https://img.shields.io/maintenance/yes/2023)

## Key features

Expand Down Expand Up @@ -73,10 +73,10 @@ Advanced settings include:
|------------------------------------------------------------------------------------------------------------------|------------|
| Update interval | 30 seconds |
| Enabling or disabling [Device Wi-Fi Access switches](docs/controls.md#device-wi-fi-access) | Disabled |
| Enabling or disabling [Number of connected devices for each router](docs/sensors.md#number-of-connected-devices) | Enabled |
| Enabling or disabling [Number of connected devices for each router](docs/sensors.md#number-of-connected-devices) | Disabled |
| Enabling or disabling [Device tags](docs/device-tags.md#device-tags) | Disabled |
| Enabling or disabling [Devices tracking](docs/device-tracking.md#devices-tracking) | Enabled |
| Enabling or disabling [Router-specific zones](docs/device-tracking.md#router-specific-zones) | Disabled |
| Enabling or disabling [Devices tracking](docs/device-tracking.md#devices-tracking) | Disabled |
| Enabling or disabling [Router-specific zones](docs/device-tracking.md#router-specific-zones) | Disabled |


![Options 1/2](docs/images/options_1.png)
Expand Down Expand Up @@ -108,7 +108,6 @@ You can attach one or more tags to each client device in order to be able to use
* Wi-Fi 802.11r switch ([read more](docs/controls.md#wi-fi-80211r-switch))
* Wi-Fi TWT switch ([read more](docs/controls.md#wi-fi-6-twt-switch))
* Wi-Fi Access Control ([read more](docs/controls.md#wi-fi-access-control))
* Reboot router ([read more](docs/controls.md#reboot))
* Device Wi-Fi Access ([read more](docs/controls.md#device-wi-fi-access))

### Selects
Expand Down
4 changes: 2 additions & 2 deletions custom_components/huawei_mesh_router/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
DEFAULT_VERIFY_SSL: Final = False
DEFAULT_SCAN_INTERVAL: Final = 30
DEFAULT_WIFI_ACCESS_SWITCHES: Final = False
DEFAULT_ROUTER_CLIENTS_SENSORS: Final = True
DEFAULT_ROUTER_CLIENTS_SENSORS: Final = False
DEFAULT_DEVICES_TAGS: Final = False
DEFAULT_DEVICE_TRACKER: Final = True
DEFAULT_DEVICE_TRACKER: Final = False
DEFAULT_DEVICE_TRACKER_ZONES: Final = False

ATTR_MANUFACTURER: Final = "Huawei"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/huawei_mesh_router/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"@vmakeev"
],
"iot_class": "local_polling",
"version": "0.8.4",
"version": "0.8.4.1",
"config_flow": true
}
2 changes: 1 addition & 1 deletion docs/device-tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The component allows you to track all devices connected to your mesh network.

This feature can be disabled in [advanced options](../README.md#advanced-options).
This feature is disabled by default and can be enabled in [advanced options](../README.md#advanced-options).

Each tracked device exposes the following attributes:

Expand Down
Binary file modified docs/images/options_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Also, one sensor is created for each additional router in the mesh network: **\*

![Clients sensor](images/sensor_clients.png)

**\*** These sensors will not be added if individual client sensors are disabled in [advanced options](../README.md#advanced-options).
**\*** These sensors will not be added if individual client sensors are not enabled in [advanced options](../README.md#advanced-options).

_Note: Sensors for additional routers are located in their own devices._

Expand Down

0 comments on commit dd138fa

Please sign in to comment.