Skip to content

Commit

Permalink
Add H3600P model.
Browse files Browse the repository at this point in the history
  • Loading branch information
juacas committed Dec 20, 2023
1 parent b746d97 commit eaf2f2a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Component to integrate some ZTE routers as a device trackers in home assistant.
| ZTE H169A | H169A |
| ZTE H388X | H388X |
| ZTE H2640 | H2640 |
| ZTE H3600P | H3600P |


This integration could work with more routers. Try one of the above and see if it work with yours.
Expand Down Expand Up @@ -68,4 +69,4 @@ For more information about the device_tracker parameters visit the official [Hom

## Contributors

- Thanks to @gselivanof for H288A, H169A models support, @TrinTragula for H388X verification, @kvshino for H2640 verification, @dapuzz for G6645P verification.
- Thanks to @gselivanof for H288A, H169A models support, @TrinTragula for H388X verification, @kvshino for H2640 verification, @dapuzz for G6645P verification, @onegambler for H3600P verification.
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.6"
VERSION = "1.3.7"
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.6"
"version": "v1.3.7"
}
2 changes: 1 addition & 1 deletion custom_components/zte_tracker/zteclient/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""ZTE client"""

__author__ = "Juan Pablo de Castro (juan.pablo.de.castro@gmail.com)"
__version__ = "1.2.2"
__version__ = "1.2.3"
__copyright__ = "Copyright (c) 2022 Juan Pablo de Castro"
# Use of this source code is governed by the MIT license.
__license__ = "MIT"
2 changes: 2 additions & 0 deletions custom_components/zte_tracker/zteclient/zte_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
_MODELS['H2640'] = _MODELS['H288A']
# Synonym F6645P is like F6640
_MODELS['F6645P'] = _MODELS['F6640']
# Synonym H3600P is like H288A
_MODELS['H3600P'] = _MODELS['H288A']
class zteClient:
def __init__(self, host, username, password,model):
"""Initialize the client."""
Expand Down

0 comments on commit eaf2f2a

Please sign in to comment.