Configtool: added REPORT_TARGET_TEMPS ...

... in anticipation of it's being adopted.

This also nicely shows how simple it is to add (or remove) a
configurable option to the config tool.
This commit is contained in:
jbernardis 2015-01-25 20:17:32 -05:00 committed by Markus Hitter
parent bb29d50f31
commit 74f0c88df9
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ class MiscellaneousPage(wx.Panel, Page):
'BANG_BANG': "Enable",
'BANG_BANG_ON': "On PWM Level:",
'BANG_BANG_OFF': "Off PWM Level:",
'REPORT_TARGET_TEMPS': "Report Target Temperatures",
'MOVEBUFFER_SIZE': "Movebuffer Size:",
'DC_EXTRUDER': "Heater:", 'DC_EXTRUDER_PWM': "PWM:",
'USE_WATCHDOG': "Use the Watchdog Timer",
@ -84,6 +85,10 @@ class MiscellaneousPage(wx.Panel, Page):
cb = self.addCheckBox(k, self.onCheckBox)
sz.Add(cb, pos = (7, 1))
k = 'REPORT_TARGET_TEMPS'
cb = self.addCheckBox(k, self.onCheckBox)
sz.Add(cb, pos = (8, 1))
k = 'REFERENCE'
ch = self.addChoice(k, self.references,
self.references.index(self.defaultRef),