diff --git a/js/menus/SendMenuView.js b/js/menus/SendMenuView.js
index feea3546b30257e422223a32021cc64cf39b4a09..74a9de894d05f0f532709c3b6176851c67a5b2e4 100644
--- a/js/menus/SendMenuView.js
+++ b/js/menus/SendMenuView.js
@@ -19,9 +19,12 @@ define(['jquery', 'underscore', 'menuParent', 'serialComm', 'commPlist', 'text!s
 
 
         _initialize: function(){
+
             this.listenTo(this.model, "change:stockSimulationPlaying", this.render);
             this.listenTo(serialComm, "change:isStreaming", this.render);
-            this.listenTo(cam, "change:simLineNumber", this._drawGcodeHighlighter);
+            this.listenTo(cam, "change:simLineNumber", this._lineNumChanged);
+
+            this.nextLine = cam.get("simLineNumber");
         },
 
         _startStream: function(e){
@@ -44,12 +47,23 @@ define(['jquery', 'underscore', 'menuParent', 'serialComm', 'commPlist', 'text!s
 
         _decrementLineNum: function(e){
             e.preventDefault();
-            console.log("prev");
+            var nextLine = this.nextLine - 1;
+            if (nextLine < 0) nextLine = 0;
+            this._setNextLine(nextLine);
         },
 
         _incrementLineNum: function(e){
             e.preventDefault();
-            console.log("next");
+            var nextLine = this.nextLine + 1;
+            var length = cam.get("dataOut").split("\n").length;
+            if (nextLine > length-1) nextLine = length-1;
+            this._setNextLine(nextLine);
+        },
+
+        _setNextLine: function(val){
+            this.nextLine = val;
+            $("#nextLine").val(this.nextLine);
+            this._drawGcodeHighlighter(val);
         },
 
         _openSerialMonitor: function(e){
@@ -57,8 +71,12 @@ define(['jquery', 'underscore', 'menuParent', 'serialComm', 'commPlist', 'text!s
             serialComm.openSerialMonitor();
         },
 
-        _drawGcodeHighlighter: function(){
+        _lineNumChanged: function(){
             var lineNum = cam.get("simLineNumber");
+            this._setNextLine(lineNum);
+        },
+
+        _drawGcodeHighlighter: function(lineNum){
             if (lineNum == 0) return;
             var code = cam.get("dataOut").split("\n");
             code[lineNum] = "<span id='gcodeHighlighter'>" + code[lineNum] + " </span>";
@@ -73,7 +91,7 @@ define(['jquery', 'underscore', 'menuParent', 'serialComm', 'commPlist', 'text!s
         },
 
         _makeTemplateJSON: function(){
-            return _.extend(serialComm.toJSON(), commPlist, cam.toJSON(), camPlist);
+            return _.extend(serialComm.toJSON(), commPlist, cam.toJSON(), camPlist, {nextLine:this.nextLine});
         },
 
         _render: function(){
diff --git a/js/menus/templates/SendMenuView.html b/js/menus/templates/SendMenuView.html
index c7f271af6f91898f08ef6843b2d2cfe68c154cf4..1d14b9f245da51251f9cda7719003764c74ec0b6 100644
--- a/js/menus/templates/SendMenuView.html
+++ b/js/menus/templates/SendMenuView.html
@@ -10,7 +10,7 @@
         <% } %>
         <br/>
         <a href="#" id="openSerialMonitor" class="btn btn-block btn-lg btn-default">Open Serial Monitor</a><br/>
-        Next Line: &nbsp;&nbsp;<input id="nextLine" value="" placeholder="##" class="intInput form-control unresponsiveInput" type="text">
+        Next Line: &nbsp;&nbsp;<input id="nextLine" value=<%= nextLine %> placeholder="##" class="intInput form-control unresponsiveInput" type="text">
         &nbsp;&nbsp;<a href="#" id="previousLineButton" class="btn btn-lg btn-default">Prev</a>
         &nbsp;&nbsp;<a href="#" id="nextLineButton" class="btn btn-lg btn-default">Next</a><br/><br/>
         <div id="gcodeEditor"><%= dataOut %></div><br/>
diff --git a/js/models/SerialComm.js b/js/models/SerialComm.js
index 03ae3ba40efcbdfb406873bedbfb970add239467..f341e3c7fcbd9bf0d4af4b2e6f8523fee4f4cf5d 100644
--- a/js/models/SerialComm.js
+++ b/js/models/SerialComm.js
@@ -92,7 +92,6 @@ define(['underscore', 'backbone', 'socketio', 'machineState'], function(_, Backb
 
         socket.on('connected', function(data){
             serialComm.set("connected", true, {silent:true});
-            console.log(data);
             _.each(_.keys(data), function(key){
                 if (data[key] !== null) serialComm.set(key, data[key]);
             });