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:
parent
bb29d50f31
commit
74f0c88df9
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in New Issue