0
0
mirror of https://github.com/Doodle3D/doodle3d-firmware.git synced 2025-01-03 08:13:49 +01:00

support for lulzbot taz 4 and doodle dream printer

This commit is contained in:
Arne Boon 2015-05-27 17:53:53 +02:00
parent 027f803d54
commit 4a054f5d5f
2 changed files with 10 additions and 1 deletions

View File

@ -108,6 +108,8 @@ M.printer_dimensions_x = {
default_deltamaker = 0, default_deltamaker = 0,
default_kossel = 0, default_kossel = 0,
default_minifactory = 150, default_minifactory = 150,
default_lulzbot_taz_4 = 298,
default_doodle_dream = 120,
subSection = 'printer_type', subSection = 'printer_type',
type = 'int', type = 'int',
description = '', description = '',
@ -120,6 +122,8 @@ M.printer_dimensions_y = {
default_deltamaker = 0, default_deltamaker = 0,
default_kossel = 0, default_kossel = 0,
default_minifactory = 150, default_minifactory = 150,
default_lulzbot_taz_4 = 275,
default_doodle_dream = 120,
subSection = 'printer_type', subSection = 'printer_type',
type = 'int', type = 'int',
description = '', description = '',
@ -129,6 +133,8 @@ M.printer_dimensions_z = {
default = 200, default = 200,
default_minifactory = 155, default_minifactory = 155,
default__3Dison_plus = 150, default__3Dison_plus = 150,
default_lulzbot_taz_4 = 250,
default_doodle_dream = 80,
subSection = 'printer_type', subSection = 'printer_type',
type = 'int', type = 'int',
description = '', description = '',
@ -139,6 +145,7 @@ M.printer_heatedbed = {
default_ultimaker2 = true, default_ultimaker2 = true,
default_makerbot_replicator2x = true, default_makerbot_replicator2x = true,
default_minifactory = true, default_minifactory = true,
default_lulzbot_taz_4 = true,
subSection = 'printer_type', subSection = 'printer_type',
type = 'bool', type = 'bool',
description = 'Printer has heated bed', description = 'Printer has heated bed',

View File

@ -29,6 +29,7 @@ local SUPPORTED_PRINTERS = {
kossel = "Kossel", kossel = "Kossel",
leapfrog_creatr = "LeapFrog Creatr", leapfrog_creatr = "LeapFrog Creatr",
lulzbot_aO_101 = "LulzBot AO-101", lulzbot_aO_101 = "LulzBot AO-101",
lulzbot_taz_4 = "LulzBot TAZ 4",
makergear_m2 = "MakerGear M2", makergear_m2 = "MakerGear M2",
makergear_prusa = "MakerGear Prusa", makergear_prusa = "MakerGear Prusa",
makibox = "Makibox", makibox = "Makibox",
@ -50,7 +51,8 @@ local SUPPORTED_PRINTERS = {
mamba3d = "Mamba3D", mamba3d = "Mamba3D",
_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"
} }
local SUPPORTED_BAUDRATES = { local SUPPORTED_BAUDRATES = {
["115200"] = "115200 bps", ["115200"] = "115200 bps",