diff --git a/coordinator/coordinator.html b/coordinator/coordinator.html
index e999d50..c2d66c9 100644
--- a/coordinator/coordinator.html
+++ b/coordinator/coordinator.html
@@ -33,10 +33,10 @@
Teaching Mode Operations
-
@@ -47,10 +47,15 @@
Execution Mode Operations
-
+ Last Bag Playing:
+
+ None
+
+
+
Play Last Recording
-
+
Stop Playing Recording
diff --git a/coordinator/js/ros_scripts.js b/coordinator/js/ros_scripts.js
index 79ec1cf..1b1d7eb 100644
--- a/coordinator/js/ros_scripts.js
+++ b/coordinator/js/ros_scripts.js
@@ -40,6 +40,17 @@ modeStatus.subscribe(function(message) {
}
});
+// Playing Bag
+var bagPlayingTopic = new ROSLIB.Topic({
+ ros : ros,
+ name : '/aescape/bags/playing',
+ messageType : 'std_msgs/String'
+});
+
+bagPlayingTopic.subscribe(function(message) {
+ document.getElementById("bagPlayingText").innerHTML = message.data
+});
+
////////////////////////////////////////////////////////////////