1 Star 0 Fork 31

A梁籍-软件网站开发จุ๊บ/Aircontroller-scrcpy

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
deviceTouchWorker.js 442 Bytes
Copy Edit Raw Blame History
yanghang authored 2021-12-25 19:32 . 首次提交
var net = require("net");
var device;
var _touch;
self.onmessage = e=>{
console.log(e);
if(e.data.event=='connect'){
device=e.data.data;
_touch = net.connect({
port: device.port1
}, err => {
console.debug(err);
})
_touch.on('error', (e) => {
console.error("控制模块连接失败" + e);
})
}else{
_touch.write(e.data);
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiyunjishu/aircontroller-scrcpy.git
git@gitee.com:jiyunjishu/aircontroller-scrcpy.git
jiyunjishu
aircontroller-scrcpy
Aircontroller-scrcpy
master

Search