Package de.nordakademie.nxtsimulation.motor

Examples of de.nordakademie.nxtsimulation.motor.NativeMotorPortStub


   
   
    NxtMotorStub motorA = new NxtMotorStub(0);
    NxtMotorStub motorB = new NxtMotorStub(1);
    NativeMotorPort np = NativeMotorPort.getInstance();
    np.setBehaviour(new NativeMotorPortStub(motorA, motorB, null));   
    NativeBattery nb = NativeBattery.getInstance();
    nb.setBehaviour(new NativeBatteryStub());
   
    Motor.A.stop();
    Motor.B.stop()
View Full Code Here


  final IMotorStub B = context.mock(IMotorStub.class, "B");
  final IMotorStub C = context.mock(IMotorStub.class, "C");
 
  @Before
  public void setUp() throws Exception {
    motorPort = new NativeMotorPortStub();
    motorPort.setMotorStubById(0, A);
    motorPort.setMotorStubById(1, B);
    motorPort.setMotorStubById(2, C);
  }
View Full Code Here

    NativeButton nativeButton = NativeButton.getInstance();
    NativeLCD nativeLcd = NativeLCD.getInstance();
    NativeSensorPort nativeSensor = NativeSensorPort.getInstance();
   
    //Verhalten f�r die Cerca Instanzen setzen
    NativeMotorPortStub motorportStub = new NativeMotorPortStub();
    nativeMotorPort.setBehaviour(motorportStub);   
    NativeBatteryStub batteryStub = new NativeBatteryStub();
    nativeBattery.setBehaviour(batteryStub);   
    NativeButtonStub btnStub = new NativeButtonStub();
    nativeButton.setBehaviour(btnStub);     
View Full Code Here

   * Simulation notwendigen Komponenten und verkn�pft sie �ber die verschiedenen
   * Controller.
   */
  protected void initSimulation() {
    // Verhalten f�r die Cerca Instanzen setzen
    motorportStub = new NativeMotorPortStub();
    nativeMotorPort.setBehaviour(motorportStub);
    batteryStub = new NativeBatteryStub();
    nativeBattery.setBehaviour(batteryStub);
    btnStub = new NativeButtonStub();
    nativeButton.setBehaviour(btnStub);
View Full Code Here

TOP

Related Classes of de.nordakademie.nxtsimulation.motor.NativeMotorPortStub

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.