A simple widget that displays an LED strip in shuffleboard
Put this jar into your Shuffleboard/plugins directory
Note
This directory should have been created by shuffleboard. Its default location is {{userhome}}/Shuffleboard/plugins.
This widget takes a byte[] and uses the Addressable LED widget. In java, this could look like
(In the constructor)
Shuffleboard.getTab("My Tab Name").addRaw("My Widget Name", this::getLedData).withWidget("Addressable LED");(In the class)
private byte[] getLedData() {
return m_ledSim.getData();
}