From 19a718205dbb30dacc6ecfe40be5526c8bc1c671 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Fri, 1 Jul 2016 21:27:36 +0200 Subject: [PATCH] =?UTF-8?q?BQ=20Hephestos2=20-=20Preheating=20temperature?= =?UTF-8?q?=20fix=20When=20starting=20a=20print=20with=20the=20"custom"=20?= =?UTF-8?q?GCode=20by=20BQ,=20the=20printer=20resets=20the=20nozzle=20temp?= =?UTF-8?q?erature=20to=20210=C2=B0C=20when=20printing=20via=20SD=20card?= =?UTF-8?q?=20(no=20matter=20what=20you=20set=20on=20Cura)=20and=20only=20?= =?UTF-8?q?preheats=20the=20nozzle=20to=20180=C2=B0C=20when=20printing=20v?= =?UTF-8?q?ia=20USB.=20So=20currently=20the=20printer=20begins=20to=20prin?= =?UTF-8?q?t=20via=20USB=20at=20180=C2=B0C=20and=20reaches=20the=20correct?= =?UTF-8?q?=20temperature=20eg.g=20while=20printing=20the=20brim.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/definitions/bq_hephestos_2.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/bq_hephestos_2.def.json b/resources/definitions/bq_hephestos_2.def.json index e4e58cb6c2..db6a2971e6 100644 --- a/resources/definitions/bq_hephestos_2.def.json +++ b/resources/definitions/bq_hephestos_2.def.json @@ -14,7 +14,7 @@ }, "overrides": { - "machine_start_gcode": { "default_value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\n; -- end of START GCODE --" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\nM109 S{print_temperature} ;Makes sure the temperature is correct before printing\n; -- end of START GCODE --" }, "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --" }, "machine_width": { "default_value": 210 }, "machine_depth": { "default_value": 297 },