mouse_click.bat 428 B

1234567891011121314
  1. @echo off
  2. .\send.exe COM3 115200 0xFF
  3. timeout /t 1 /nobreak >nul
  4. :: Hold the left mouse button for 3 seconds
  5. .\send.exe COM3 115200 0x02 0x05 0x01
  6. timeout /t 3 /nobreak >nul
  7. .\send.exe COM3 115200 0x02 0x06 0x01
  8. timeout /t 3 /nobreak >nul
  9. :: Do a right click
  10. .\send.exe COM3 115200 0x02 0x05 0x02 0x02 0x06 0x02
  11. timeout /t 3 /nobreak >nul
  12. :: Do a middle click
  13. .\send.exe COM3 115200 0x02 0x05 0x03 0x02 0x06 0x00