mouse_move_abs.bat 558 B

12345678910111213141516171819202122
  1. @echo off
  2. .\send.exe COM3 115200 0xFF
  3. timeout /t 1 /nobreak >nul
  4. :: Move cursor to the top left with 10% padding
  5. .\send.exe COM3 115200 0x05 0x09 0x9A 0x01 0x9A 0x01
  6. timeout /t 1 /nobreak >nul
  7. :: Move cursor to the bottom left corner
  8. .\send.exe COM3 115200 0x05 0x09 0x9A 0x01 0x5D 0x0E
  9. timeout /t 1 /nobreak >nul
  10. :: Move cursor to the bottom right corner
  11. .\send.exe COM3 115200 0x05 0x09 0x5D 0x0E 0x5D 0x0E
  12. timeout /t 1 /nobreak >nul
  13. :: Move cursor to the top right corner
  14. .\send.exe COM3 115200 0x05 0x09 0x5D 0x0E 0x9A 0x01