From d9ba143ede7395b4769002f2c25c6d5e05c984c6 Mon Sep 17 00:00:00 2001 From: PAN Lei Date: Fri, 23 Feb 2024 16:37:49 +0100 Subject: [PATCH] support KB2003 --- src/workers/CommandorPage.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/workers/CommandorPage.js b/src/workers/CommandorPage.js index e9eedaa..7f70539 100644 --- a/src/workers/CommandorPage.js +++ b/src/workers/CommandorPage.js @@ -1222,8 +1222,11 @@ class CommandorPage { await this.tapForDevice(this.device, 110, 2208) await delay(2000); await openUrlWithAdb(RDV_URL, this.device) - } - if (this.device.model() === "21091116C") { + } else if (this.device.model() === "KB2003") { + await this.tapForDevice(this.device, 100, 2289) + await delay(2000); + await openUrlWithAdb(RDV_URL, this.device) + } else if (this.device.model() === "21091116C") { await this.tapForDevice(this.device, 107, 2193) await delay(2000); await openUrlWithAdb(RDV_URL, this.device)