mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Replaced "RoboRIO" with "roboRIO" in comments (#87)
This commit is contained in:
committed by
Peter Johnson
parent
10b4814e60
commit
7a402b4170
@@ -18,7 +18,7 @@ import edu.wpi.first.wpilibj.tables.ITable;
|
||||
/**
|
||||
* Built-in accelerometer.
|
||||
*
|
||||
* <p>This class allows access to the RoboRIO's internal accelerometer.
|
||||
* <p>This class allows access to the roboRIO's internal accelerometer.
|
||||
*/
|
||||
public class BuiltInAccelerometer implements Accelerometer, LiveWindowSendable {
|
||||
/**
|
||||
@@ -66,7 +66,7 @@ public class BuiltInAccelerometer implements Accelerometer, LiveWindowSendable {
|
||||
/**
|
||||
* The acceleration in the X axis.
|
||||
*
|
||||
* @return The acceleration of the RoboRIO along the X axis in g-forces
|
||||
* @return The acceleration of the roboRIO along the X axis in g-forces
|
||||
*/
|
||||
@Override
|
||||
public double getX() {
|
||||
@@ -76,7 +76,7 @@ public class BuiltInAccelerometer implements Accelerometer, LiveWindowSendable {
|
||||
/**
|
||||
* The acceleration in the Y axis.
|
||||
*
|
||||
* @return The acceleration of the RoboRIO along the Y axis in g-forces
|
||||
* @return The acceleration of the roboRIO along the Y axis in g-forces
|
||||
*/
|
||||
@Override
|
||||
public double getY() {
|
||||
@@ -86,7 +86,7 @@ public class BuiltInAccelerometer implements Accelerometer, LiveWindowSendable {
|
||||
/**
|
||||
* The acceleration in the Z axis.
|
||||
*
|
||||
* @return The acceleration of the RoboRIO along the Z axis in g-forces
|
||||
* @return The acceleration of the roboRIO along the Z axis in g-forces
|
||||
*/
|
||||
@Override
|
||||
public double getZ() {
|
||||
|
||||
@@ -17,10 +17,10 @@ import edu.wpi.first.wpilibj.tables.ITableListener;
|
||||
import edu.wpi.first.wpilibj.tables.TableKeyNotDefinedException;
|
||||
|
||||
/**
|
||||
* The preferences class provides a relatively simple way to save important values to the RoboRIO to
|
||||
* access the next time the RoboRIO is booted.
|
||||
* The preferences class provides a relatively simple way to save important values to the roboRIO to
|
||||
* access the next time the roboRIO is booted.
|
||||
*
|
||||
* <p> This class loads and saves from a file inside the RoboRIO. The user can not access the file
|
||||
* <p> This class loads and saves from a file inside the roboRIO. The user can not access the file
|
||||
* directly, but may modify values at specific fields which will then be automatically saved to the
|
||||
* file by the NetworkTables server. </p>
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ import edu.wpi.first.wpilibj.communication.UsageReporting;
|
||||
import edu.wpi.first.wpilibj.hal.SerialPortJNI;
|
||||
|
||||
/**
|
||||
* Driver for the RS-232 serial port on the RoboRIO.
|
||||
* Driver for the RS-232 serial port on the roboRIO.
|
||||
*
|
||||
* <p>The current implementation uses the VISA formatted I/O mode. This means that all traffic goes
|
||||
* through the formatted buffers. This allows the intermingled use of print(), readString(), and the
|
||||
|
||||
@@ -49,7 +49,7 @@ public final class Utility {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the state of the "USER" button on the RoboRIO.
|
||||
* Get the state of the "USER" button on the roboRIO.
|
||||
*
|
||||
* @return true if the button is currently pressed down
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user