1 Star 0 Fork 1

anshe/autojs

forked from yxk990407/autojs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
解锁.js 696 Bytes
一键复制 编辑 原始数据 按行查看 历史
ridersam 提交于 2018-10-01 11:39 . 增加解锁.js
auto(); // 自动打开无障碍服务
var config = files.isFile("config.js") ? require("config.js") : {};
if (typeof config !== "object") {
config = {};
}
var options = Object.assign({
password: "",
pattern_size: 3
}, config); // 用户配置合并
const WIDTH = Math.min(device.width, device.height);
const HEIGHT = Math.max(device.width, device.height);
var Robot = require("Robot.js");
var robot = new Robot(options.max_retry_times);
var Secure = require("Secure.js");
var secure = new Secure(robot, options.max_retry_times);
while (!device.isScreenOn()) {
device.wakeUp();
sleep(1000); // 等待屏幕亮起
}
secure.openLock(options.password, options.pattern_size);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anshe90/autojs.git
git@gitee.com:anshe90/autojs.git
anshe90
autojs
autojs
master

搜索帮助