6个版本
0.0.7 | 2024年1月21日 |
---|---|
0.0.6 | 2024年1月11日 |
#278 in 硬件支持
每月 28次下载
42KB
1K SLoC
zxtouch
ios 按键自动化(连点器)、需越狱并已安装 zxtouch.deb
功能
显示弹窗
use zxtouch::zx_touch::{TouchTrait, ZxTouch};
let mut touch = ZxTouch::new("192.168.3.113", 6000);//!
touch.connect().await.unwrap();
touch.show_alert_box("hello", "hi", 3).await.unwrap();
点击屏幕
use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.touch_down(200, 200, TouchFinger::Five).await.unwrap();
touch.close().await.unwrap();
文本输入
use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.text("hello").await.unwrap();
touch.close().await.unwrap();
依赖
~1–2MB
~40K SLoC