"

2013 FRC Java API

"

edu.wpi.first.wpilibj
Interface IDashboard

All Known Implementing Classes:
Dashboard

public interface IDashboard

Represents a Dashboard which can provide data to be sent by the DriverStation class.

Author:
pmalmsten

Method Summary
 void flush()
          If the dashboard had data buffered to be sent, calling this method will reset the output buffer.
 byte[] getBytes()
          Gets a reference to the current data to be sent to the dashboard.
 int getBytesLength()
          Gets the length of the current data to be sent to the dashboard.
 

Method Detail

getBytes

byte[] getBytes()
Gets a reference to the current data to be sent to the dashboard.

Returns:
Byte array of data.

getBytesLength

int getBytesLength()
Gets the length of the current data to be sent to the dashboard.

Returns:
The length of the data array to be sent to the dashboard.

flush

void flush()
If the dashboard had data buffered to be sent, calling this method will reset the output buffer.


"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"