From b4aac2ada73d25282ebe660e3d2fa2f65974c911 Mon Sep 17 00:00:00 2001 From: remittor Date: Wed, 24 Nov 2021 09:13:24 +0300 Subject: [PATCH] Add support devices R2100, RM1800, RA67 --- connect.py | 2 +- connect2.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/connect.py b/connect.py index 2fc6ac5..8e01a0e 100644 --- a/connect.py +++ b/connect.py @@ -31,7 +31,7 @@ if gw.status < 1: dn = gw.device_name -if dn == 'rm2100' or dn == 'r2350': +if dn == 'r2100' or dn == 'r2350' or dn == 'rm1800' or dn == 'rm2100' or dn == 'ra67': import connect2 sys.exit(0) diff --git a/connect2.py b/connect2.py index 0c4e27f..37e91cd 100644 --- a/connect2.py +++ b/connect2.py @@ -14,6 +14,14 @@ import urllib sys.path.append(os.path.dirname(os.path.abspath(__file__))) from gateway import * +# Devices: +# R2100 FW v2.0.722 Router AC2100 +# R2350 FW v1.3.8 AIoT Router AC2350 +# R3600 FW v1.0.17 AIoT Router AX3600 +# RM2100 FW v2.0.23 Router Redmi AC2100 +# RM1800 FW v1.0.336 AX1800 Wi-Fi 6 Mesh Router +# RA67 FW v1.0.33 AX5 Router + gw = Gateway(timeout = 4) if gw.status < 1: