mouse_click.bat 339 B

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