From 9b9513c278da06be153a9d07227ccd9d942e60c3 Mon Sep 17 00:00:00 2001 From: Rick Companje Date: Fri, 23 Jun 2017 11:07:21 +0200 Subject: [PATCH] disable heatup and set heatup temperature to 0 by default --- src/conf_defaults.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/conf_defaults.lua b/src/conf_defaults.lua index a591ffc..4ccfed9 100644 --- a/src/conf_defaults.lua +++ b/src/conf_defaults.lua @@ -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 = '' }