preliminary plannig in report
[des2015.git] / dsl / runtime / src / nl / ru / des / ShutdownBehaviour.java
index 85aa07b..430b5df 100644 (file)
@@ -3,13 +3,13 @@ package nl.ru.des;
 import lejos.hardware.motor.EV3LargeRegulatedMotor;
 
 public class ShutdownBehaviour extends BasicBehaviour{
-
        public ShutdownBehaviour(SensorCollector sensors, EV3LargeRegulatedMotor leftMotor,
                        EV3LargeRegulatedMotor rightMotor, ColorMemory colors) {
                super(sensors, leftMotor, rightMotor, colors);
        }
        
        @Override public void action(){
-               //Here it should stop the current arbitrator, not sure how yet...
+               LCDPrinter.print("Terminate mission");
+               MarsRover.arb.stop();
        }
 }