From d30dc8fe3178a7ef105b710934557d7bc7155210 Mon Sep 17 00:00:00 2001 From: Arne Boon Date: Mon, 8 Jun 2015 11:52:23 +0200 Subject: [PATCH] undo doodle dream implementation: first fully implement the filament thickness (https://github.com/Doodle3D/doodle3d-client/issues/284) --- src/conf_defaults.lua | 7 ++++--- src/util/printer.lua | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/conf_defaults.lua b/src/conf_defaults.lua index 932a51c..8c8f068 100644 --- a/src/conf_defaults.lua +++ b/src/conf_defaults.lua @@ -109,7 +109,7 @@ M.printer_dimensions_x = { default_kossel = 0, default_minifactory = 150, default_lulzbot_taz_4 = 298, - default_doodle_dream = 120, + --default_doodle_dream = 120, subSection = 'printer_type', type = 'int', description = '', @@ -123,7 +123,7 @@ M.printer_dimensions_y = { default_kossel = 0, default_minifactory = 150, default_lulzbot_taz_4 = 275, - default_doodle_dream = 120, + --default_doodle_dream = 120, subSection = 'printer_type', type = 'int', description = '', @@ -134,7 +134,7 @@ M.printer_dimensions_z = { default_minifactory = 155, default__3Dison_plus = 150, default_lulzbot_taz_4 = 250, - default_doodle_dream = 80, + --default_doodle_dream = 80, subSection = 'printer_type', type = 'int', description = '', @@ -241,6 +241,7 @@ M.printer_travelSpeed = { M.printer_filamentThickness = { default = 2.89, + --default_doodle_dream = 1,75, type = 'float', description = '', min = 0.0 diff --git a/src/util/printer.lua b/src/util/printer.lua index 320a813..0cba7ea 100644 --- a/src/util/printer.lua +++ b/src/util/printer.lua @@ -52,7 +52,7 @@ local SUPPORTED_PRINTERS = { _3Dison_plus = "3Dison plus", marlin_generic = "Generic Marlin Printer", makerbot_generic = "Generic Makerbot Printer", - doodle_dream = "Doodle Dream" + --doodle_dream = "Doodle Dream" } local SUPPORTED_BAUDRATES = { ["115200"] = "115200 bps",