mirror of
https://github.com/Team4388/Robot-Essentials.git
synced 2026-06-09 00:38:01 -06:00
Changed subsystem variables to private where applicable
May need to be changed later, but try to use methods to access these variables instead of accessing them directly, as it fits better with the command based model and will be easier to rewrite should motors change, usage changes, etc.
This commit is contained in:
@@ -20,8 +20,8 @@ import frc4388.utility.LEDPatterns;
|
||||
*/
|
||||
public class LED extends SubsystemBase {
|
||||
|
||||
public float currentLED;
|
||||
public Spark LEDController;
|
||||
private float currentLED;
|
||||
private Spark LEDController;
|
||||
|
||||
/**
|
||||
* Add your docs here.
|
||||
|
||||
Reference in New Issue
Block a user