{"id":25164064,"url":"https://github.com/steelridgerobotics/2025reefscape","last_synced_at":"2025-07-01T15:07:31.798Z","repository":{"id":276528573,"uuid":"904478717","full_name":"SteelRidgeRobotics/2025Reefscape","owner":"SteelRidgeRobotics","description":"Our robot code for the 2025 FRC season.","archived":false,"fork":false,"pushed_at":"2025-04-24T22:39:09.000Z","size":367,"stargazers_count":5,"open_issues_count":1,"forks_count":10,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-24T23:35:18.331Z","etag":null,"topics":["commands2","ctre","first-frc","first-robotics-competition","frc","frc-robot","limelight","pathplanner","python","reefscape","reefscape-2025","robotics-competition","robotpy","wpilib"],"latest_commit_sha":null,"homepage":"https://www.steelridge6343.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SteelRidgeRobotics.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-17T01:10:01.000Z","updated_at":"2025-04-24T22:39:14.000Z","dependencies_parsed_at":"2025-03-20T02:28:07.278Z","dependency_job_id":"34f10447-69a4-4654-af48-fa901398840f","html_url":"https://github.com/SteelRidgeRobotics/2025Reefscape","commit_stats":null,"previous_names":["steelridgerobotics/2025reefscape"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteelRidgeRobotics%2F2025Reefscape","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteelRidgeRobotics%2F2025Reefscape/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteelRidgeRobotics%2F2025Reefscape/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteelRidgeRobotics%2F2025Reefscape/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SteelRidgeRobotics","download_url":"https://codeload.github.com/SteelRidgeRobotics/2025Reefscape/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251742018,"owners_count":21636366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commands2","ctre","first-frc","first-robotics-competition","frc","frc-robot","limelight","pathplanner","python","reefscape","reefscape-2025","robotics-competition","robotpy","wpilib"],"created_at":"2025-02-09T04:11:46.574Z","updated_at":"2025-04-30T16:29:11.476Z","avatar_url":"https://github.com/SteelRidgeRobotics.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 2025Reefscape\n\nTeam 6343's 2025 FRC robot code for Reefscape, officially known as Leviathan. Leviathan's code is written in Python and is based off of Robotpy's Commands V2 control system.\n\nThe code is divided into several packages and files, each responsible for a different aspect of the robot function. This README explains the function of each package, and some of the variable naming conventions used. Additional information about each specific class can be found in that class' Python file.\n\n## Code Highlights\n### State Subsystems\nMost subsystems are children classes of [`StateSubsystem`](subsystems/__init__.py). This gives us enhanced logging capabilities and allows us to easily add additional features throughout the season via adding in additional states.\n\n### Highly Scalable Code Structure\nOur code is divided into 3 groups:\n- [`Superstructure`](subsystems/superstructure.py) (comprised of all subsystems)\n- [`Intake`](subsystems/intake.py) (Compliant wheel mechanism on the game piece manipulator)\n- [`Drivetrain`](subsystems/swerve.py) (The swerve drivebase)\n\nUsing this system, we can use the Superstructure to handle all major subsystem states, which prevents conflicts between subsystems (such as the pivot moving inside the elevator and the elevator attempting to extend).\n\n## File Functions\n\n[`subsystems`](subsystems)\n\nContains the code for all subsystems. Each subsystem includes simulation support and data logging for match replay and analysis.\nMore information about the inner workings of each subsystem can be found in their respective file.\n\n[`deploy`](deploy)\n\nContains all auto routines generated by PathPlanner and Choreo. Also includes all [Elastic](https://github.com/Gold872/elastic-dashboard) layouts and [AdvantageScope](https://docs.advantagescope.org/) configurations.\n\n[`lib/elasticlib.py`](lib/elasticlib.py)\n\nContains all Elastic code for manipulating the driver dashboard.\n\n[`lib/limelight.py`](lib/limelight.py)\n\nContains the LimelightHelpers [translated from Java](https://github.com/LimelightVision/limelightlib-wpijava/blob/89accc690a9b5bc5cfb0914ebbb444d66dd8ce3b/LimelightHelpers.java) for reading Limelight data from NetworkTables.\n\n[`tests/pyfrc_test.py`](tests/pyfrc_test.py)\n\nContains test code executed before code is deployed to the robot. This ensures that no uncaught errors get deployed to the robot, which could result in a devastating match loss.\n\n[`vision`](vision)\n\nContains all Limelight pipelines used by our Vision subsystem. These are manually tuned at each event in order to provide the best AprilTag visibility.\n\n## Credits\n\nThis robot could not have been programmed without the incredible talent, skills, and determination from the following:\n- Richard Amerman, Software Mentor\n- Christopher Snelson, Software Mentor\n- James Haddix, Software Director\n- Caden Dalley, Swerve Specialist\n- Chase Funk, Auto Specialist\n- Matthew Murten, Elevator Specialist\n- Micah Nguyen, End Effector Specialist\n- Chimaraoke Okafor, Auto and Climber Specialist\n- Raiden Snelson, Vision Specialist\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteelridgerobotics%2F2025reefscape","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteelridgerobotics%2F2025reefscape","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteelridgerobotics%2F2025reefscape/lists"}