|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlejos.navigation.Pilot
lejos.navigation.CompassPilot
public class CompassPilot
A Pilot that keeps track of direction using a CompassSensor.
Field Summary | |
---|---|
protected CompassSensor |
compass
|
Fields inherited from class lejos.navigation.Pilot |
---|
_degPerDistance, _left, _right, _speed, _trackWidth, _wheelDiameter |
Constructor Summary | |
---|---|
CompassPilot(CompassSensor compass,
float wheelDiameter,
float trackWidth,
Motor leftMotor,
Motor rightMotor)
Allocates a CompasPilot object, and sets the physical parameters of the NXT robot. |
|
CompassPilot(CompassSensor compass,
float wheelDiameter,
float trackWidth,
Motor leftMotor,
Motor rightMotor,
boolean reverse)
Allocates a CompasPilot object, and sets the physical parameters of the NXT robot. |
|
CompassPilot(SensorPort compassPort,
float wheelDiameter,
float trackWidth,
Motor leftMotor,
Motor rightMotor)
Allocates a CompasPilot object, and sets the physical parameters of the NXT robot. |
|
CompassPilot(SensorPort compassPort,
float wheelDiameter,
float trackWidth,
Motor leftMotor,
Motor rightMotor,
boolean reverse)
Allocates a CompasPilot object, and sets the physical parameters of the NXT robot. |
Method Summary | |
---|---|
void |
calibrate()
|
int |
getAngle()
Returns the compass angle in degrees, Cartesian (increasing counter clockwise) |
CompassSensor |
getCompass()
return the compass |
int |
getHeading()
Returns target direction of robot facing |
boolean |
isMoving()
returns TRUE if robot is moving |
boolean |
isRotating()
returns true if robot is rotating to a specific direction |
boolean |
isTraveling()
returns returns if the robot is travelling for a specific distance; |
void |
rotate(int angle)
Rotates the NXT robot through a specific angle; Rotates left if angle is positive, right if negative, Returns when angle is reached. |
void |
rotate(int angle,
boolean immediateReturn)
see rotate(angle) |
void |
rotateTo(int heading)
robot rotates to the specified compass heading; |
void |
rotateTo(int angle,
boolean immediateReturn)
robot rotates to the specified compass heading; |
void |
setHeading(int angle)
sets target direction of robot facing in degrees |
void |
travel(float distance)
Moves the NXT robot a specific distance; A positive distance causes forward motion; negative distance moves backward. |
void |
travel(float distance,
boolean immediateReturn)
Moves the NXT robot a specific distance. |
Methods inherited from class lejos.navigation.Pilot |
---|
backward, forward, getLeft, getLeftActualSpeed, getLeftCount, getRight, getRightActualSpeed, getRightCount, getSpeed, getTravelDistance, getTurnRatio, regulateSpeed, resetTachoCount, setSpeed, steer, steer, steer, stop |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait |
Field Detail |
---|
protected CompassSensor compass
Constructor Detail |
---|
public CompassPilot(SensorPort compassPort, float wheelDiameter, float trackWidth, Motor leftMotor, Motor rightMotor)
compassPort
- the sensor port connected to the CompassSensor e.g. SensorPort.S1wheelDiameter
- Diameter of the tire, in any convenient units. (The diameter in mm is usually printed on the tire).trackWidth
- Distance between center of right tire and center of left tire, in same units as wheelDiameterpublic CompassPilot(SensorPort compassPort, float wheelDiameter, float trackWidth, Motor leftMotor, Motor rightMotor, boolean reverse)
compassPort
- : the compass sensor is connected to this port;wheelDiameter
- Diameter of the tire, in any convenient units. (The diameter in mm is usually printed on the tire).trackWidth
- Distance between center of right tire and center of left tire, in same units as wheelDiameterleftMotor
- rightMotor
- reverse
- if true of motor.forward() drives the robot backwardspublic CompassPilot(CompassSensor compass, float wheelDiameter, float trackWidth, Motor leftMotor, Motor rightMotor)
compass
- : a compass sensor;wheelDiameter
- Diameter of the tire, in any convenient units. (The diameter in mm is usually printed on the tire).trackWidth
- Distance between center of right tire and center of left tire, in same units as wheelDiameterleftMotor
- rightMotor
- public CompassPilot(CompassSensor compass, float wheelDiameter, float trackWidth, Motor leftMotor, Motor rightMotor, boolean reverse)
compass
- : a compass sensor;wheelDiameter
- Diameter of the tire, in any convenient units. (The diameter in mm is usually printed on the tire).trackWidth
- Distance between center of right tire and center of left tire, in same units as wheelDiameterleftMotor
- rightMotor
- reverse
- if true of motor.forward() drives the robot backwardsMethod Detail |
---|
public boolean isRotating()
public boolean isTraveling()
public CompassSensor getCompass()
public int getAngle()
getAngle
in class Pilot
public int getHeading()
public void setHeading(int angle)
public void calibrate()
public void travel(float distance, boolean immediateReturn)
travel
in class Pilot
distance
- The positive or negative distance to move the robot, same units as _wheelDiameterimmediateReturn
- iff true, the method returns immediately.public void travel(float distance)
travel
in class Pilot
distance
- of robot movement. Unit of measure for distance must be same as wheelDiameter and trackWidthpublic void rotateTo(int angle, boolean immediateReturn)
angle
- Desired compass headingimmediateReturn
- if TRUE, method returns immediately; robot stops facing in specified directionpublic void rotateTo(int heading)
heading
- Desired compass headingpublic void rotate(int angle, boolean immediateReturn)
rotate
in class Pilot
immediateReturn
- - if true, method returns immediately. angle
- degrees. Positive angle rotates to the left; negative to the right. public void rotate(int angle)
rotate
in class Pilot
angle
- degrees. Positive angle rotates to the left (clockwise); negative to the right. public boolean isMoving()
isMoving
in class Pilot
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |