Hey, we’re having some problems getting the cRIO to send some leegible data back to the dashboard.
We’re using the default dashboard and the attached files. Output looks like this on the default dashboard:
The crio sends data as a sequence of bytes - you have to manually unpack the data. You need to convert the u8 bytes into a string, and from there into whatever the original data type was.
on the crio:
dashboardDataFormat.PackAndSend();
As far as I can tell (my team’s using labview only) that is correct - particularly if thats an example.
On the ds side, you have to unpack it - before that, its just a stream of bytes. Using the FRC Dashboard is a good tutorial on how to handle data sent back.
-jonathan
try to specify what you’re using next time plz…