You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lee Helpingstine edited this page Sep 4, 2013
·
1 revision
###Overview
The TirePressure object will hold an identifier for a tire and a pressure in pounds per square inch.
###Constructors
public TirePressure(State<Tire> tire, PoundsPerSquareInch pressure);
public TirePressure(Tire tire, PoundsPerSquareInch pressure);
public TirePressure(Tire tire, Number value);
###States
public enum Tire {
FRONT_LEFT,
FRONT_RIGHT,
REAR_LEFT,
REAR_RIGHT
}