You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * This is where we place constants related to hardware on a robot that aren't * specific to any singular subsystem. */publicstaticfinalclassHardwareConstants {
publicstaticfinaldoubleTIMEOUT_S = 0.02;
publicstaticfinalStringCANIVORE_CAN_BUS_STRING = "canivore 1";
publicstaticfinalStringRIO_CAN_BUS_STRING = "rio";
/** * For some reason, falcons normally have a deadband threshold of 4%. This is * incredibly high! It makes it very hard to do precise movements, so with this * constant we set the threshold to the lowest possible value. */publicstaticfinaldoubleMIN_FALCON_DEADBAND = 0.001;
}
The text was updated successfully, but these errors were encountered:
Example shown here. Credit to @JacksonElia
The text was updated successfully, but these errors were encountered: