diff --git a/scenarios/MovePlatformTest/configs/MovePlatformExample.xml b/scenarios/MovePlatformTest/configs/MovePlatformExample.xml
index 3cc6e32ffc0257a9b33d627f6afe3a3d128c56fd..a2a7b1dfd1dcfd466f7e3a80cd4b416f9d67411b 100644
--- a/scenarios/MovePlatformTest/configs/MovePlatformExample.xml
+++ b/scenarios/MovePlatformTest/configs/MovePlatformExample.xml
@@ -40,9 +40,9 @@
             <z>0</z>
         </Item0>
     </targetPositions-->
-    <positionalAccuracy>10</positionAccuracy> <!--mm-->
-    <orientationalAccuracy>0.1</orientationAccuracy> <!--rad-->
-    <timeoutMoveTo>30000</timeoutMoveTO>
+    <positionalAccuracy>10</positionalAccuracy> <!--mm-->
+    <orientationalAccuracy>0.1</orientationalAccuracy> <!--rad-->
+    <timeoutMoveTo>30000</timeoutMoveTo>
   </StateParameters>
 </MovePlatformStateChart>
 
diff --git a/scenarios/MovePlatformTest/configs/MovePlatformExampleCloseToTable.xml b/scenarios/MovePlatformTest/configs/MovePlatformExampleCloseToTable.xml
index 791e75adbdeb3eed788b4846e60ee4f6f6ee3704..efd5f286fa48b9399bd678658711c9d7c14512f1 100644
--- a/scenarios/MovePlatformTest/configs/MovePlatformExampleCloseToTable.xml
+++ b/scenarios/MovePlatformTest/configs/MovePlatformExampleCloseToTable.xml
@@ -20,9 +20,12 @@
             <z>0</z>
         </Item0>
     </targetPositions-->
-    <positionalAccuracy>10</positionAccuracy> <!--mm-->
-    <orientationalAccuracy>0.1</orientationAccuracy> <!--rad-->
-    <timeoutMoveTo>30000</timeoutMoveTO>
+    <positionalAccuracy>10</positionalAccuracy> <!--mm-->
+    <orientationalAccuracy>0.1</orientationalAccuracy> <!--rad-->
+    <timeoutMoveTo>30000</timeoutMoveTo> <!--ms-->
+    <!-- after the last target was reached, wait a certain amount of 
+         time (should be smaller than the timeout!) -->
+    <waitAfterLast>10000</waitAfterLast> <!--ms-->
   </StateParameters>
 </MovePlatformStateChart>
 
diff --git a/source/RobotAPI/statecharts/MovePlatform/MovePlatform.cpp b/source/RobotAPI/statecharts/MovePlatform/MovePlatform.cpp
index 970cf7f292e44a57cc0def318aaa6877077a04c7..a8e16c3654e53612f8d7dbe3483b24b6e0ed19ec 100644
--- a/source/RobotAPI/statecharts/MovePlatform/MovePlatform.cpp
+++ b/source/RobotAPI/statecharts/MovePlatform/MovePlatform.cpp
@@ -57,6 +57,7 @@ namespace armarx
         addToInput("positionalAccuracy", VariantType::Float, false);
         addToInput("orientationalAccuracy", VariantType::Float, false);
         addToInput("timeoutMoveTo", VariantType::Int, false);
+        addToInput("waitAfterLast", VariantType::Int, false);
         addToLocal("positionCounter", VariantType::ChannelRef);
     }
 
@@ -104,6 +105,7 @@ namespace armarx
         addToInput("positionalAccuracy", VariantType::Float, false);
         addToInput("orientationalAccuracy", VariantType::Float, false);
         addToInput("timeoutMoveTo", VariantType::Int, false);
+        addToInput("waitAfterLast", VariantType::Int, false);
         addToInput("positionCounter", VariantType::ChannelRef, false);
     }
 
@@ -128,7 +130,8 @@ namespace armarx
             condTargetReached = installCondition<EvTargetReached>(checkX && checkY && checkAngle);
             timeoutMoveToNext = setTimeoutEvent(getInput<int>("timeoutMoveTo"), createEvent<EvTimeoutTargetUnreachable>());
         } else {
-            sendEvent<EvNoTargets>();
+//            sendEvent<EvNoTargets>();
+            timeoutWaitAfterLast = setTimeoutEvent(getInput<int>("waitAfterLast"), createEvent<EvNoTargets>());
         }
 
         context->systemObserverPrx->incrementCounter(counter);
diff --git a/source/RobotAPI/statecharts/MovePlatform/MovePlatform.h b/source/RobotAPI/statecharts/MovePlatform/MovePlatform.h
index b3bb67b012e9514f7ee5c6d165e16a9cf27ba6c4..150fcdd99460b490c7a46ffb495e1708352ff946 100644
--- a/source/RobotAPI/statecharts/MovePlatform/MovePlatform.h
+++ b/source/RobotAPI/statecharts/MovePlatform/MovePlatform.h
@@ -75,6 +75,7 @@ namespace armarx
 
         ConditionIdentifier condTargetReached;
         StateUtility::ActionEventIdentifier timeoutMoveToNext;
+        StateUtility::ActionEventIdentifier timeoutWaitAfterLast;
     };
 
 }