Team-OKC-Robotics / FRC-2022-CPP

a c++ port of our FRC-2022 code as training in C++
Other
0 stars 2 forks source link

Manage Shuffleboard pointers in individual software subsystems #28

Open jkleiber opened 1 year ago

jkleiber commented 1 year ago

Summary When the WPILib updated Shuffleboard to return pointers in GetEntry(), our anti-pattern of managing global references no longer made sense. In #26 , we ported the references to pointers to maintain compatibility, but it would be better to track our shuffleboard widgets in the software subsystems instead of globally.

Work to Do

Verification