0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2024-12-22 02:53:49 +01:00

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

View File

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