Wait for heating

This commit is contained in:
peteruithoven 2013-10-16 12:30:36 +02:00
parent 51e4394491
commit 50cb44b865
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ function generate_gcode(callback) {
// return;
console.log("printer temperature: ",temperature);
gcode.push("M104 S" + temperature); // set target temperature and do not wait for the extruder to reach it
//gcode.push("M109 S" + temperature); // set target temperature and wait for the extruder to reach it
//gcode.push("M104 S" + temperature); // set target temperature and do not wait for the extruder to reach it
gcode.push("M109 S" + temperature); // set target temperature and wait for the extruder to reach it
// add gcode begin commands
gcode = gcode.concat(startGcode);