mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2025-01-02 07:53:49 +01:00
undo doodle dream implementation: first fully implement the filament thickness (https://github.com/Doodle3D/doodle3d-client/issues/284)
This commit is contained in:
parent
7f56af0dfc
commit
d30dc8fe31
@ -109,7 +109,7 @@ M.printer_dimensions_x = {
|
|||||||
default_kossel = 0,
|
default_kossel = 0,
|
||||||
default_minifactory = 150,
|
default_minifactory = 150,
|
||||||
default_lulzbot_taz_4 = 298,
|
default_lulzbot_taz_4 = 298,
|
||||||
default_doodle_dream = 120,
|
--default_doodle_dream = 120,
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
type = 'int',
|
type = 'int',
|
||||||
description = '',
|
description = '',
|
||||||
@ -123,7 +123,7 @@ M.printer_dimensions_y = {
|
|||||||
default_kossel = 0,
|
default_kossel = 0,
|
||||||
default_minifactory = 150,
|
default_minifactory = 150,
|
||||||
default_lulzbot_taz_4 = 275,
|
default_lulzbot_taz_4 = 275,
|
||||||
default_doodle_dream = 120,
|
--default_doodle_dream = 120,
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
type = 'int',
|
type = 'int',
|
||||||
description = '',
|
description = '',
|
||||||
@ -134,7 +134,7 @@ M.printer_dimensions_z = {
|
|||||||
default_minifactory = 155,
|
default_minifactory = 155,
|
||||||
default__3Dison_plus = 150,
|
default__3Dison_plus = 150,
|
||||||
default_lulzbot_taz_4 = 250,
|
default_lulzbot_taz_4 = 250,
|
||||||
default_doodle_dream = 80,
|
--default_doodle_dream = 80,
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
type = 'int',
|
type = 'int',
|
||||||
description = '',
|
description = '',
|
||||||
@ -241,6 +241,7 @@ M.printer_travelSpeed = {
|
|||||||
|
|
||||||
M.printer_filamentThickness = {
|
M.printer_filamentThickness = {
|
||||||
default = 2.89,
|
default = 2.89,
|
||||||
|
--default_doodle_dream = 1,75,
|
||||||
type = 'float',
|
type = 'float',
|
||||||
description = '',
|
description = '',
|
||||||
min = 0.0
|
min = 0.0
|
||||||
|
@ -52,7 +52,7 @@ local SUPPORTED_PRINTERS = {
|
|||||||
_3Dison_plus = "3Dison plus",
|
_3Dison_plus = "3Dison plus",
|
||||||
marlin_generic = "Generic Marlin Printer",
|
marlin_generic = "Generic Marlin Printer",
|
||||||
makerbot_generic = "Generic Makerbot Printer",
|
makerbot_generic = "Generic Makerbot Printer",
|
||||||
doodle_dream = "Doodle Dream"
|
--doodle_dream = "Doodle Dream"
|
||||||
}
|
}
|
||||||
local SUPPORTED_BAUDRATES = {
|
local SUPPORTED_BAUDRATES = {
|
||||||
["115200"] = "115200 bps",
|
["115200"] = "115200 bps",
|
||||||
|
Loading…
Reference in New Issue
Block a user