├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── valorant_tflite_model.iml └── vcs.xml ├── .ipynb_checkpoints └── setup_raspi-checkpoint.ipynb ├── .vs ├── ProjectSettings.json ├── PythonSettings.json ├── VSWorkspaceState.json ├── slnx.sqlite └── valorant_tflite_model │ └── v16 │ └── .suo ├── Aim Lab testing ├── ShootEnemy.py ├── aim_bot_test_data.py ├── color_calibrator.py ├── contour_calibrator.py ├── frame_rate_test.py ├── i2c_test.py └── ser_test.py ├── README.md ├── mouse_move_i2c └── mouse_move_i2c.ino ├── quant_script.ipynb └── setup_raspi.ipynb /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/valorant_tflite_model.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.idea/valorant_tflite_model.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.ipynb_checkpoints/setup_raspi-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.ipynb_checkpoints/setup_raspi-checkpoint.ipynb -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/PythonSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "TestFramework": "Pytest" 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vs/valorant_tflite_model/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/.vs/valorant_tflite_model/v16/.suo -------------------------------------------------------------------------------- /Aim Lab testing/ShootEnemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/ShootEnemy.py -------------------------------------------------------------------------------- /Aim Lab testing/aim_bot_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/aim_bot_test_data.py -------------------------------------------------------------------------------- /Aim Lab testing/color_calibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/color_calibrator.py -------------------------------------------------------------------------------- /Aim Lab testing/contour_calibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/contour_calibrator.py -------------------------------------------------------------------------------- /Aim Lab testing/frame_rate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/frame_rate_test.py -------------------------------------------------------------------------------- /Aim Lab testing/i2c_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/i2c_test.py -------------------------------------------------------------------------------- /Aim Lab testing/ser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/Aim Lab testing/ser_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/README.md -------------------------------------------------------------------------------- /mouse_move_i2c/mouse_move_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/mouse_move_i2c/mouse_move_i2c.ino -------------------------------------------------------------------------------- /quant_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/quant_script.ipynb -------------------------------------------------------------------------------- /setup_raspi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyTheIntern/TPU_accelerated_rasPi3_aimbot_valorant/HEAD/setup_raspi.ipynb --------------------------------------------------------------------------------