-
I can't sim any of my robot code because of this function. I don't need it for the sim, but it would be a lot of work to rip out everything in my program just because it's not implemented in the sim. …
-
This is seems to be caused by this snippet of code:
```
ShuffleboardTab tab = Shuffleboard.getTab("System Tests");
```
Where a student creates an empty tab.
```
Error at frc.robot.Main.ma…
-
I know there's a property to change where the "packages" folder lives, however when I press F5 to compile and deploy my extension, the NAVX file is created at the root of my repo. Is there a way to ch…
-
Here is my filter class which extends ZuulFilter
`@Override
public String filterType() {
return "pre";
}
@Override
public int filterOrder() {
return 6;
}
@Override
public bool…
-
Per [this page](https://www.pdocs.kauailabs.com/navx-mxp/software/roborio-libraries/java/), there's an official Kauai Labs Maven repository at http://www.kauailabs.com/maven2 with the NavX artifact (a…
-
I'm trying to forward all requests to my API to a single endpoint based upon some condition.
The `Gateway` app runs on port `8080`
I've created the following filter:
public class Outage…
-
The roboRIO navX libraries use WPILib rather than talking to the I2C/SPI/USB devices directly (using the HAL or otherwise), so these will actually need a rewrite. Sorry to break it to you.
-
**Describe the bug**
I followed the setup page, and when running the `gradlew runSnobotSim` command, I get a build failure error. One line seemed to catch my eye:
```
15:51:36.001 [main] FATAL com.…
-
I'm having a constant reoccurring issue wherein, no matter which arc i choose, only one set of talons (The left talons) will run. I have followed all the sensor setup (apart from the PigeonIMU stuff),…
-
Comments say
```gradle
// Defining my dependencies. In this case, WPILib (+ friends), CTRE Toolsuite (Talon SRX)
// and NavX.
dependencies {
compile wpilib()
}
```
In the build.gradle(lin…