disable heatup and set heatup temperature to 0 by default

This commit is contained in:
Rick Companje 2017-06-23 11:07:21 +02:00
parent d9e84308dd
commit 9b9513c278
1 changed files with 3 additions and 3 deletions

View File

@ -334,19 +334,19 @@ M.printer_bottomEnableTraveling = {
} }
M.printer_heatup_enabled = { M.printer_heatup_enabled = {
default = true, default = false,
type = 'bool', type = 'bool',
description = '' description = ''
} }
M.printer_heatup_temperature = { M.printer_heatup_temperature = {
default = 180, default = 0,
type = 'int', type = 'int',
description = '' description = ''
} }
M.printer_heatup_bed_temperature = { M.printer_heatup_bed_temperature = {
default = 70, default = 0,
type = 'int', type = 'int',
description = '' description = ''
} }