Switch all robots over to use EventLoop

Stop using the old QueueGroup constructor for ControlLoop

Change-Id: I027febf86e75399a97cdb4dc50dbc475705e0393
diff --git a/y2014_bot3/control_loops/rollers/rollers.cc b/y2014_bot3/control_loops/rollers/rollers.cc
index 573a41f..d2b4da9 100644
--- a/y2014_bot3/control_loops/rollers/rollers.cc
+++ b/y2014_bot3/control_loops/rollers/rollers.cc
@@ -5,8 +5,9 @@
 namespace y2014_bot3 {
 namespace control_loops {
 
-Rollers::Rollers(control_loops::RollersQueue *rollers)
-    : aos::controls::ControlLoop<control_loops::RollersQueue>(rollers) {}
+Rollers::Rollers(::aos::EventLoop *event_loop, const ::std::string &name)
+    : aos::controls::ControlLoop<control_loops::RollersQueue>(event_loop,
+                                                              name) {}
 
 void Rollers::RunIteration(
     const control_loops::RollersQueue::Goal *goal,