0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-11-22 09:17:56 +01:00

Wait for heating

This commit is contained in:
peteruithoven 2013-10-16 12:30:36 +02:00
parent 51e4394491
commit 50cb44b865

View File

@ -125,8 +125,8 @@ function generate_gcode(callback) {
// return; // return;
console.log("printer temperature: ",temperature); 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("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("M109 S" + temperature); // set target temperature and wait for the extruder to reach it
// add gcode begin commands // add gcode begin commands
gcode = gcode.concat(startGcode); gcode = gcode.concat(startGcode);