Super simple standalone app.
- Connects to Initface and activates vibe on key/mouse press of your choice.
- Works while minimized.
- Can change intensity level.
- Can select from devices, or vibrate all devices.
- Can change vibration pattern and create vibration patterns.
Download the executable from the releases tab on this page and just run it.
There is a guide in the tool bar if you need it.
If you don't trust a random exe file, you can install python, clone this repo, install the dependencies to look through the code and run it yourself
Only needed if you want to edit and work with the script on your own
pip install -r requirements.txtNavigate the terminal to where you have the python script, then run:
python AppV5.pyThis is for generating an exe file.
python -m venv .venv # Creates a folder named ".venv" #Creates virtual env
.venv\Scripts\activate # Activates virtual env
pip install -r requirements.txt # installs requirements
pip install pyinstaller # Installs builder
pyinstaller --onefile --noconsole --name "IntifaceHapticApp" AppV5.py --icon="./icon.ico" # Builds app
# The app will be in the dist folder, the build folder is just temp files you can deleteThe AppV1 and V2 are just older worse versions of the app incase you wanted to see them for some reason.