|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlejos.robotics.objectdetection.FusorDetector
public class FusorDetector
If you have a robot with multiple sensors (touch and range) and would like them to report to one listener, or if you want to control them at the same time (such as disabling them all at once) you can use this class.
This class maintains its own thread for checking the FeatureDetectors.
Constructor Summary | |
---|---|
FusorDetector()
|
Method Summary | |
---|---|
void |
addDetector(FeatureDetector detector)
This method adds another FeatureDetector to the FusorDetector. |
void |
addListener(FeatureListener listener)
Adds a listener to the FeatureDetector. |
void |
enableDetection(boolean on)
This method enables/disables automatic scanning and listener reporting for this object and all FeatureDetectors used in this FusorDetector object. |
void |
featureDetected(Feature feature,
FeatureDetector detector)
This method must deal with different delays from different sensors. |
int |
getDelay()
The minimum delay between notification of readings from the feature detector. |
boolean |
isEnabled()
Indicates if automatic scanning mode and listener notification is currently enabled. |
Feature |
scan()
This method scans all the sensors added to this object and returns the amalgamated results. |
void |
setDelay(int delay)
Sets the minimum delay between readings from the feature detector. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FusorDetector()
Method Detail |
---|
public void addDetector(FeatureDetector detector)
detector
- public Feature scan()
scan
in interface FeatureDetector
public void featureDetected(Feature feature, FeatureDetector detector)
featureDetected
in interface FeatureListener
feature
- The RangeReading, which contains angle and range.public void addListener(FeatureListener listener)
FeatureDetector
addListener
in interface FeatureDetector
listener
- The FeatureListener that is notified every time a feature is detected.public void enableDetection(boolean on)
enableDetection
in interface FeatureDetector
on
- true enables detection and notifications, false disables this class until it is enabled again.public int getDelay()
FeatureDetector
getDelay
in interface FeatureDetector
public boolean isEnabled()
FeatureDetector
isEnabled
in interface FeatureDetector
public void setDelay(int delay)
FeatureDetector
setDelay
in interface FeatureDetector
delay
- The FeatureDetector will return one new set of readings every delay milliseconds.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |