Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wpilibsuite/frc-characterization
Tools to help FRC teams measure the physical parameters of their robot
https://github.com/wpilibsuite/frc-characterization
drivetrain frc java measurements python robotics robotpy
Last synced: 3 months ago
JSON representation
Tools to help FRC teams measure the physical parameters of their robot
- Host: GitHub
- URL: https://github.com/wpilibsuite/frc-characterization
- Owner: wpilibsuite
- License: apache-2.0
- Archived: true
- Created: 2018-05-04T02:47:03.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-10-27T02:26:15.000Z (about 3 years ago)
- Last Synced: 2024-04-29T12:20:24.761Z (8 months ago)
- Topics: drivetrain, frc, java, measurements, python, robotics, robotpy
- Language: Python
- Size: 1.81 MB
- Stars: 51
- Watchers: 17
- Forks: 41
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
frc-characterization has been archived. The features it provided are now a part of [sysid](https://github.com/wpilibsuite/sysid).
# Robot Characterization Toolsuite
This is a toolsuite for characterization of FRC robot mechanisms. The characterization tools consist of a python application that runs on the user's PC, and matching robot code that runs on the user's robot. The PC application will send control signals to the robot over network tables, while the robot sends data back to the application. The application then processes the data and determines characterization parameters for the user's robot mechanism, as well as producing diagnostic plots. Data can be saved (in JSON format) for future use, if desired.
For in-depth documentation, see the project's [frc-docs page](https://docs.wpilib.org/en/stable/docs/software/wpilib-tools/robot-characterization/introduction.html).
## Contributing new changes
This is intended to be a project that all members of the FIRST community can quickly and easily contribute to. If you find a bug, or have an idea that you think others can use:
1. [Fork this git repository](https://github.com/wpilibsuite/frc-characterization/fork) to your GitHub account.
2. Create your feature branch (`git checkout -b my-new-feature`).
3. Make changes.
4. Install the black formatter (`pip install black --upgrade`), and run it (`black ./` when your working directory is this repo). If your PR is failing because of formatting issues and your local formatter says everything is good then black is likely out of date.
5. Commit your changes (`git commit -am 'Add some feature'`).
6. Push to the branch (`git push -u origin my-new-feature`).
7. Create new Pull Request on github.## License
All code in this repository is available under the Apache v2 license.