From: Youness Alaoui Date: Tue, 2 Jun 2015 16:49:51 +0000 (-0400) Subject: Set the proper machine_type for 0.5mm nozzle TAZ5 X-Git-Tag: lulzbot-15.02.1-1.01~2^2~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=33ac21407d672d33a664c6562b79d9b1fe54988d;p=cura.git Set the proper machine_type for 0.5mm nozzle TAZ5 --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index fb94c7cc..7b45bf98 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -507,8 +507,8 @@ class MachineSelectPage(InfoPage): profile.putMachineSetting('machine_width', '298') profile.putMachineSetting('machine_depth', '275') profile.putMachineSetting('machine_height', '250') - profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5') profile.putMachineSetting('serial_baud', '115200') + # Machine type and name are set in the nozzle select page else: profile.putMachineSetting('machine_width', '155') profile.putMachineSetting('machine_depth', '155') @@ -1039,11 +1039,12 @@ class Taz5NozzleSelectPage(InfoPage): if self.Nozzle35Radio.GetValue(): profile.putProfileSetting('nozzle_size', '0.35') profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.35 nozzle)') - #TODO: Use existing profiles + profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5') + else: profile.putProfileSetting('nozzle_size', '0.5') profile.putMachineSetting('machine_name', 'LulzBot TAZ 5 (0.5 nozzle)') - #TODO: Use new profiles + profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5_05nozzle') def OnPageChanging(self, e): e.GetPage().StoreData()