Popular Classes
S
ources
-
E
xamples
-
D
iscussions
Project: BioMAV
Explorer
Outline
Vision
standin-module
Vision.java
PoleDetector.java
PoleDetectorOud.java
vision_testing
Java
nl
ru
ai
projects
parrot
poledetection
SimplePoleDetectionModule.java
test
Test01.java
CPPPoleDetector.java
base
src
Java
nl
ru
ai
projects
parrot
dronecontrol
ParrotDroneInterface.java
VideoPollInterface.java
SensorDataObserver.java
ControlInterface.java
SensoryDataInterface.java
PolePositionPollInterface.java
ParrotControl
JavaDroneControl
src
com
codeminders
ardrone
VideoReader.java
VideoReceivedInterface.java
video
uint.java
ImageSlice.java
BufferedVideoImage.java
MacroBlock.java
nl
ru
ai
projects
parrot
dronecontrol
javadronecontrol
ATControlCommandInterface.java
DroneConfigurationChannel.java
VisionStandin.java
test
Test01.java
NavdataPacket.java
NavdataChannelObserver.java
NavdataChannel.java
DroneGroundStation.java
GroundStation
Java
src
nl
ru
ai
projects
parrot
dronecontrol
groundstation
SDLDroneJoystick.java
DroneInputDevice.java
GroundStation.java
ExtDroneInputDevice.java
DroneInputDeviceExtension.java
ParrotSim
Java
src
nl
ru
ai
projects
parrot
dronecontrol
simulator
ExternalTimerSynchronizer.java
Simulator.java
test
Test02.java
Test01.java
SimulatedDrone.java
manualcontrol
Model.java
Main.java
View.java
Control.java
Behavior
src
nl
ru
ai
projects
parrot
biomav
editor
ParameterControlInterface.java
BehaviorEditor.java
FSMEditorSuite.java
EditorFSMFactory.java
FSMExecutor.java
BehaviorVertex.java
transitions
PoleFound.java
OutOfSight.java
Delay.java
CloseToPole.java
states
PassRightState.java
FlyRightState.java
FlyLeftState.java
TurnLeftState.java
BehaviorArray.java
StartState.java
PassLeftState.java
TurnRightState.java
SearchPoleState.java
BehaviorVertexListener.java
TransitionEdge.java
Drone.java
Main.java
BioMAVConfig.java
fsm
StateListener.java
Behavior.java
Transition.java
FSMController.java
State.java
tools
PositionLogger.java
BehaviorModule.java
Sleeper.java
Writer.java
TwitterTweets.java
BehaviorModuleSL.java
TerminatorHasCrashed.java
TwitterAccessBak.java
TerminalCondition.java
BehaviorModuleLB.java
BehaviorModule1.java
TwitterAccess.java
TerminatorNumberOfIterations.java
TerminatorTimer.java
behaviors
InitializeDrone.java
FlyTowardsPole.java
PassLeft.java
TurnRight.java
PassRight.java
TwitterBehavior.java
TurnLeft.java
SearchPole.java
Hover.java
transitions
PoleFound.java
TurnComplete.java
OutOfSight.java
CloseToPole.java
ea2
Test.java
evaluator
EvaluatorMain.java
Sjoerd2EA.java
server
TaskServer.java
ParallelBreeder.java
GenomeFactory.java
TaskParameters.java
GeneticAlgorithm.java
GAServerMain.java
Task.java
DroneGAFactory.java
SjoerdEA.java
LaurieEA.java
client
FSMFactory.java
TaskClient.java
TaskClientMain.java
EvaluationStarter.java
ea
evolve
EASetup.java
EAConfiguration.java
Chromosomes.java
fitness
EAFitness.java
FitnessDrone.java
newSensorData(SensoryDataInterface sender)
/*
This file is part of the BioMAV project.
The BioMAV project is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The BioMAV project is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with The BioMAV project. If not, see <http://www.gnu.org/licenses/>.
*/
package
nl.ru.ai.projects.parrot.dronecontrol;
/**
* This interface can be used for synchronous sensor data retrieval with the
* {@link SensoryDataInterface}. The defined function is called whenever new
* data is received by the sensor interface, and no new data is received for the
* duration of the the call to newSensorData.
*
* @author Paul Konstantin Gerke
*
*/
public
interface
SensorDataObserver
{
/**
* Called by {@link SensoryDataInterface} to notify the observer that
* a new packet of sensor data has been received. This function is called
* asynchronously by the simulation thread and should exit as fast as possible.
*
* @param sender
* SensoryDataInterface which called the callback and just received new data.
*/
public
void
newSensorData
(SensoryDataInterface sender);
}