This python script parses a "constants.h" file with button assignments of the form
const auto INTAKE_BUTTON = okapi::ControllerDigital::R1;
to generate a markdown file of button assignments.
The following is an example of documentation generated directly from source code.
- R1: intake button
- L1: outtake button
- R2: move intake to open
- L2: move intake to closed
- Left Joystick: left side drive motors
- Right Joystick: right side drive motors
- down: tray pos down
- left: raise tray
- up: tray pos up
- right: lower tray
- Y: toggle tray
- X: toggle intake
- A: place stack
- B: drive brake toggle
This script is useful particularly when any of the following are true:
- the drivers are not involved in programming the robot
- there are multiple drivers for each robot
- two robots have different button assignments, and it is desired to have a readily available reference for button bindings for each robot (i.e. for VEX U teams)
Note that the script assumes a tank drive configuration, with the left joystick controlling the left side motors and the right joystick controlling the right side motors (see lines 54 and 55 in generic_parse_key_bindings.md
). This can be easily modified to suit your driving setup.
For example, if you use arcade with the left joystick controlling turning the robot left and right and the right joystick controlling forward and backward motion, change line 54 to
output_file.write("5. Left Joystick: turns robot left and right (x axis only)\n")
and change line 55 to
output_file.write("6. Right Joystick: move robot forward and backward (y axis only)\n")
Similarly if you have a holonomic drive setup with the left joystick controlling rotation and the right joystick controlling translation, change line 54 to
output_file.write("5. Left Joystick: controls robot rotation
and change line 55 to
output_file.write("6. Right Joystick: controls robot translation")
-
Create a directory called
docs
in your top level directory, and put the filecontroller.png
in this directory. -
Create a file called
constants.h
and assign your button mappings inside of it (seeconstants_example.h
). -
Add the lines
builddocs: path/to/constants.h python generic_parse_key_bindings.py
to your Makefile
which is in the top level directory of your project folder (see Makefile_example
).
- Update
parse_key_bindings.py
with the requested information
To generate the documentation, type prosv5 make builddocs
at the root directory of your project. If you want the script to be run everytime you compile the project, you can create aliases in your .bashrc
(or equivalently .zshrc
, etc) of the form
alias pm='prosv5 make builddocs'
alias pmu='prosv5 make builddocs && prosv5 upload'
alias pmut='prosv5 make builddocs && prosv5 upload && prosv5 terminal'
See this github repository for an example of all the above used in a PROS project.
This script was tested on Ubuntu 18.04 and macOS Catalina 10.15.5.