Sending end GCode at manual stop

This commit is contained in:
peteruithoven 2013-08-16 19:27:48 +02:00
parent 7da38d2e98
commit 4c0e927480
2 changed files with 5 additions and 1 deletions

View File

@ -80,7 +80,6 @@
<div id="portrait">
<img class="vertImage" src="img/bg_vertical2.png"/>
</div>
<script src="js/libs/jquery-1.8.3.min.js"></script>
<!--<script src="js/libs/bootstrap.min.js"></script>-->
<script src="js/settings.js"></script>

View File

@ -24,6 +24,8 @@ function Printer() {
this.maxGCodeSize = 10; // max size of gcode in MB's (estimation)
this.sendStopGCodeDelay = 1000;
// Events
Printer.UPDATE = "update";
@ -133,6 +135,7 @@ function Printer() {
this.stop = function() {
console.log("Printer:stop");
var postData = { id: 0 };
var self = this;
$.ajax({
url: this.wifiboxURL + "/printer/stop",
type: "POST",
@ -141,6 +144,8 @@ function Printer() {
timeout: this.timeoutTime,
success: function(data){
console.log("Printer:stop response: ", data);
setTimeout(function() { console.log("send: ",gcodeEnd); self.print(gcodeEnd) },self.sendStopGCodeDelay);
}
}).fail(function() {
console.log("Printer:stop: failed");