Physical aimbot for Osu!. Eventually to be used for FPS games such as Valorant. This bot does not interact with the game's files at all, and instead uses only a visual input, currently a screengrab, to detect targets and click them in time
Void EULA of any title at your own risk
Enable I2C connections on the Pi in the config:
sudo raspi-config
Install this repo:
git clone https://github.com/thayes46/aimi.git
Run the main program from this directory:
make run
An Arduino to be used with this project needs to be flashed only once, after that every time the Arduino receives power it will run that same code.
*Note: Arduino used as a KBM must have the ATMega32u4 chip for native USB support
Install the arduino IDE on the Raspberry Pi:
sudo apt-get install arduino
Detect which port the Arduino is on, if you are unsure which is the Arduino, run this command with and without it plugged in to the Pi, and whatever one shows up when you plug it in, that's it. It should be either USBn
or ACMn
.
ls /dev/tty*
Compile and upload the .ino file, replacing USB0 here with the port detected in the previous step
arduino --verify --upload --board arduino:avr:micro:atmega32u4 --port /dev/tty/USB0 ./arduinoKBM/arduinoKBM.ino
*Note: --board
argument should correspond with the board you are using (Leonardo, Micro, etc.). For more information visit here
If you receive an error along the lines of permission denied: /dev/tty/USBn or /dev/tty/ACMn
run
sudo adduser [your_username] dialout
If that fails as well, add your user to the group through this line instead:
sudo usermod -a -G dialout [your_username]