Companion tool for TRIK Studio to simplify the process of uploading programs to Pioneer quadcopter.
This tool provides an executable file (“pioneer-uploader.exe”) that integrates with TRIK Studio.
These simple steps will guide you through setting up and using the TRIK Studio Pioneer Tool.
Before you begin, make sure you have TRIK Studio installed on your machine.
If errors continue to occur while using this tool, please try an alternative way to upload the program to the quadcopter: install and use the Pioneer station program.
You can build the executable file by yourself or run tests locally.
To build the project on your system you will need the following tools:
sudo apt-get install git
git clone https://github.com/kleo-53/trik-studio-pioneer-tool.git
cd trik-studio-pioneer-tool
python -m venv venv
venv\Scripts\activate
. venv/bin/activate
pip
and install the necessary packages
python.exe -m pip install --upgrade pip
pip install -r requirements.txt
Now you can edit the project, build the executable file or run tests locally!
pip
:
pip install pyinstaller
pyinstaller --onefile --name=pioneer-uploader pioneer_uploader.py
You can run tests to ensure the tool’s functionality. Tests are available in the “test_uploader.py” file.
Run tests with pytest module.
pip
:
pip install pytest
pytest test_uploader.py
Alternatively, you can use Tox for testing.
pip
:
pip install tox
tox
This project is licensed under the MIT License - see the LICENSE site for more details.
Have suggestions or improvements for the TRIK Studio Pioneer Tool? Open an issue in our repository. We appreciate your feedback and contributions!