添加小板程序版本读取

This commit is contained in:
ranchuan
2024-03-12 17:04:07 +08:00
parent 5aa013e168
commit 5bd29dd25d
11 changed files with 164 additions and 26 deletions

27
autotest/auto.py Normal file
View File

@@ -0,0 +1,27 @@
from pynput.mouse import Controller, Button
import time
if __name__ == '__main__':
mouse = Controller()
print("10秒后开始 自动点击")
time.sleep(10)
for i in range(50000):
print(f"点击第 {i}")
# 模拟左键点击
mouse.click(Button.left)
time.sleep(12)