mouse_move.bat 344 B

123456789101112
  1. @echo off
  2. :: Move up
  3. .\send.exe COM4 115200 0x03 0x00 0x80 0x00 0x00
  4. timeout /t 1 /nobreak >nul
  5. :: Move down
  6. .\send.exe COM4 115200 0x03 0x00 0x80 0x00 0x01
  7. timeout /t 1 /nobreak >nul
  8. :: Move right
  9. .\send.exe COM4 115200 0x03 0x80 0x00 0x00 0x00
  10. timeout /t 1 /nobreak >nul
  11. :: Move left
  12. .\send.exe COM4 115200 0x03 0x80 0x00 0x01 0x00