mouse_home.bat 420 B

123456789101112131415
  1. @echo off
  2. :: Move cursor to the top left corner
  3. .\send.exe COM4 115200 0x02 0x04 0x00
  4. timeout /t 3 /nobreak >nul
  5. :: Move cursor to the bottom left corner
  6. .\send.exe COM4 115200 0x02 0x04 0x01
  7. timeout /t 3 /nobreak >nul
  8. :: Move cursor to the top left corner
  9. .\send.exe COM4 115200 0x02 0x04 0x02
  10. timeout /t 3 /nobreak >nul
  11. :: Move cursor to the bottom right corner
  12. .\send.exe COM4 115200 0x02 0x04 0x03