Skip to content

Commit

Permalink
Fix typo with ZTE model H169A
Browse files Browse the repository at this point in the history
  • Loading branch information
juacas committed Nov 2, 2023
1 parent af59f00 commit f22a01e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
![GitHub commits since tagged version](https://img.shields.io/github/commits-since/juacas/zte_tracker/v1.0.0)
![GitHub last commit](https://img.shields.io/github/last-commit/juacas/zte_tracker)
<!-- ![Codecov branch](https://img.shields.io/codecov/c/github/juacas/zte_tracker/master) -->
![installation_badge](https://img.shields.io/badge/dynamic/json?color=41BDF5&logo=home-assistant&label=integration%20usage&suffix=%20installs&cacheSeconds=15600&url=https://analytics.home-assistant.io/custom_integrations.json&query=$.zte_tracker.total)

# ZTE Router Integration for Home Assistant
Component to integrate some ZTE routers as a device trackers in home assistant.
Expand Down
2 changes: 1 addition & 1 deletion custom_components/zte_tracker/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

DOMAIN = "zte_tracker"
DOMAIN_DATA = "{}_data".format(DOMAIN)
VERSION = "1.3.4"
VERSION = "1.3.5"
PLATFORMS = ["sensor", "device_tracker"]
ISSUE_URL = "https://github.com/juacas/zte_tracker/issues"
DEFAULT_HOST = '192.168.1.1'
Expand Down
2 changes: 1 addition & 1 deletion custom_components/zte_tracker/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/juacas/zte_tracker/issues",
"requirements": [],
"version": "v1.3.4"
"version": "v1.3.5"
}
4 changes: 2 additions & 2 deletions custom_components/zte_tracker/zteclient/zte_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
'lan_script': 'accessdev_landevs_lua.lua',
'lan_id_element': 'OBJ_ACCESSDEV_ID'}
}
# Synonym H196A is like H288A
_MODELS['H196A'] = _MODELS['H288A']
# Synonym H169A is like H288A
_MODELS['H169A'] = _MODELS['H288A']
# Synonym H388X is like H288A
_MODELS['H388X'] = _MODELS['H288A']
# Synonym H2640 is like H388X
Expand Down

0 comments on commit f22a01e

Please sign in to comment.