Skip to content

Commit 1a708fe

Browse files
Documentation Updates
1 parent cf0de63 commit 1a708fe

22 files changed

+192
-159
lines changed
83.9 KB
Loading
396 KB
Loading

docs/old_docs/graphics/Nine-Steps-For-Ordering-TShirts.md renamed to docs/guides/ordering-tshirts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Nine Steps for ordering T-Shirts
1+
# How to order team tshirts
22

33
This was taken and modified from [this discord message](https://discord.com/channels/658767612200615939/1184319920666837022/1194136512233754664) on 01/10/2024.
44

5-
0. Make contact with Superior to discuss lead time for shirts. WHO- I did this
5+
0. Make contact with Superior to discuss lead time for shirts.
66
1. Decide overall design/graphic layout for each item (i.e. where the logos and printed elements are such as front/back/sleeve), including how many printed colors are in the design. All these things affect the cost. (The more colors and the more locations, the greater the cost). Please see the "2023 Merchandise Details" document in the post [above](https://discord.com/channels/658767612200615939/1184319920666837022/1192867156744994889) for what I mean) WHO: In past years this was 1 BzNz student, myself and Steve. This year I am not sure which individuals identify as taking part in this. Please feel free to identify yourselves. I recommend we meet soon this week at one of our meetings to discuss.
77
2. Update any graphics in the design elements (i.e. sponsor layout, changes to the logo or wording, for instance we added the word "Robotics" under our Inconceivable logo last year.) WHO- graphics team.
88
3. Decide which apparel style & brand we are using (e.g. Gildan 50/50 poly Short Sleeve tee, Sport tek Unisex zip up etc etc). WHO- This step has already been done by me for this year.

docs/guides/programming-laptop-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
| Program Name | Annual Updates needed | Description | Download Link |
1010
| ------------ | --------------------- | ------------------------------------------------------------------------ | ------------- |
1111
| Google Chrome | No | Microsoft Edge is not suitable for programming. Any other browser, like Google Chrome, Firefox or Opera GX will work. | <https://www.google.com/chrome/> |
12-
| WPILib | Yes | WPILib is a suite of tools for FRC. Includes VSCode and some other gems. | <https://github.com/wpilibsuite/allwpilib/releases> |
12+
| [[WPILib]] | Yes | WPILib is a suite of tools for FRC. Includes VSCode and some other gems. | <https://github.com/wpilibsuite/allwpilib/releases> |
1313
| VSCode Extension Pack for Java | No | This extension by Red Hat has all of the vscode extensions you will need to write code in Java. | Use the extensions tab in VSCode. You can find it by clicking on the icon with four boxes on the left side of the screen or by pressing ++ctrl+shift+x++. |
1414
| NI Game Tools | Yes | This allows you to connect to the robot. Includes Driver's Station and RoboRIO imaging tool. To download the installer file you need to create a free account. Typically one person on the team will do this and then distribute the files to everyone else. | <https://www.ni.com/en/support/downloads/drivers/download.frc-game-tools.html> |
1515
| Git for Windows | No | This program contains Git Bash, a tool for interacting with git repositories on the command line. | <https://github.com/git-for-windows/git/releases/tag/v2.49.0.windows.1> |
1616
| PathPlanner | Yes | PathPlanner is a tool for designing autonomous routes. You should install this from the windows store to get automatic updates. | <https://apps.microsoft.com/detail/9nqbkb5dw909?ocid=webpdpshare> |
17-
| Phoenix Tuner | Yes | Phonenix tuner allows for debugging and configuration of CTRE devices. | <https://apps.microsoft.com/detail/9nvv4pwdw27z?ocid=webpdpshare> |
17+
| [[Phoenix Tuner]] | Yes | Phonenix tuner allows for debugging and configuration of CTRE devices. | <https://apps.microsoft.com/detail/9nvv4pwdw27z?ocid=webpdpshare> |
1818
| REV Hardware Client | Yes | Allows for managament of REV devices like the PDH. | <https://docs.revrobotics.com/rev-hardware-client> |
1919
| Cloudflare WARP | Maybe? | This is a VPN that allows you to bypass the internet restrictions at Kellogg. This is needed because they block important websites/protocols that our team uses like Discord and SSH. | <https://docs.revrobotics.com/rev-hardware-client> |
2020

docs/old_docs/core material/Setting-up-for-a-new-season.md renamed to docs/guides/setting-up-software-for-a-new-season.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
1-
# Setting up for a new season
1+
# Setting up software for a new season
22

33
WPILib releases a new major version of their software every season, and it's important to update our software and migrate to the corresponding year's project after kickoff to avoid various issues.
44

55
## Update WPILib
6-
**This needs to be done on ALL computers (except Chromebooks) to avoid compatibility issues.**
76

8-
Follow the instructions on [this page](https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.html) to install the latest version of WPILib. Make sure to select the "Everything" mode, "Install for this User," and "Download for this computer only" (or whatever equivalent/similar options appear in future installers.)
7+
!!! warning **This needs to be done on ALL computers (except Chromebooks) to avoid compatibility issues.**
98

10-
***
9+
Follow the instructions on [this page](https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.html) to install the latest version of WPILib. Make sure to select the "Everything" mode, "Install for this User," and "Download for this computer only" (or whatever equivalent/similar options appear in future installers.)
1110

1211
**The following steps only need to be completed once per season. If the RobotCode20XX repository (with the current year) already exists and has robot code in it, chances are that someone has already done this and you don't need to. All you have to do at this point is clone the new repository to your computer.**
1312

1413
## Update the RoboRIO
14+
1515
[View the instructions here.](https://team2530.github.io/Documentation/electronics/Updating-the-RoboRIO/)
1616

1717
## Configure a new project
1818

1919
## Step 1: Create and clone a new repo
20+
2021
Create a new GitHub repository titled `RobotCode20XX` in our Team 2530 organization. (If you don't have permission, someone else who does will need to do it for you. Or, if you were entrusted with setting everything up, you could probably get someone to give you admin privileges.) Clone this repository onto your computer, preferably somewhere you won't forget.
2122

23+
!!! note "Don't get confused!"
24+
25+
The `XX` in `RobotCode20XX` should be replaced with numbers so that it matches the current year.
26+
2227
## Step 2: Create or import a project
28+
2329
**This only needs to be done on ONE computer and then published to GitHub.**
2430

2531
At this point, you need to decide if you want to reuse the previous year's robot code (which is what we usually do) or start an entirely new project. Remember that even if you start an entirely new project, you can still copy as much code as you want from other projects, but it will be more tedious than just importing an old project.

docs/indices/electronic-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| Swerve Modules | If we are using swerve, there will be four of these. Each has two motors. | |
99
| Motors and motor controllers | | |
1010
| Robot Radio | | |
11-
| [[Blinky Light]] | | |
11+
| [[Blinky Light]] | | ![](../assets/images/blinky-light.png) |
1212
| [[VRM]] | | |
1313
| [[Battery]] | | |
1414
| Cameras and vision components | Usually [[Limelight|Limelights]]. | |

docs/old_docs/core material/MotorNaming.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

docs/old_docs/core material/Setting-up-Discord.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/old_docs/core material/Updating-documentation.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

docs/old_docs/electronics/PCM-Troubleshooting.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)