mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-11-05 14:13:22 +01:00
Craftbot PLUS
This commit is contained in:
parent
939cb66066
commit
1cb1309659
@ -133,6 +133,7 @@ M.printer_dimensions_x = {
|
|||||||
default_colido_2_0_plus = 230,
|
default_colido_2_0_plus = 230,
|
||||||
default_colido_x3045 = 300,
|
default_colido_x3045 = 300,
|
||||||
default_colido_compact = 130,
|
default_colido_compact = 130,
|
||||||
|
default_craftbot_plus = 250,
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
type = 'int',
|
type = 'int',
|
||||||
description = '',
|
description = '',
|
||||||
@ -184,6 +185,7 @@ M.printer_heatedbed = {
|
|||||||
default_colido_2_0_plus = true,
|
default_colido_2_0_plus = true,
|
||||||
default_colido_m2020 = true,
|
default_colido_m2020 = true,
|
||||||
default_colido_x3045 = true,
|
default_colido_x3045 = true,
|
||||||
|
default_craftbot_plus = true,
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
type = 'bool',
|
type = 'bool',
|
||||||
description = 'Printer has heated bed',
|
description = 'Printer has heated bed',
|
||||||
@ -192,6 +194,7 @@ M.printer_filamentThickness = {
|
|||||||
default = 2.89,
|
default = 2.89,
|
||||||
default_doodle_dream = 1.75,
|
default_doodle_dream = 1.75,
|
||||||
default_wanhao_duplicator4 = 1.75,
|
default_wanhao_duplicator4 = 1.75,
|
||||||
|
default_craftbot_plus = 1.75,
|
||||||
type = 'float',
|
type = 'float',
|
||||||
description = '',
|
description = '',
|
||||||
min = 0.0,
|
min = 0.0,
|
||||||
@ -235,6 +238,7 @@ M.printer_endcode = {
|
|||||||
default_delta_rostockmax = default_deltabot_endcode,
|
default_delta_rostockmax = default_deltabot_endcode,
|
||||||
default_deltamaker = default_deltabot_endcode,
|
default_deltamaker = default_deltabot_endcode,
|
||||||
default_kossel = default_deltabot_endcode,
|
default_kossel = default_deltabot_endcode,
|
||||||
|
default_craftbot_plus = 'M107 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;disable axes / steppers\nG90 ;absolute positioning\nM109 S{preheatTemp}\n{if heatedBed}M140 S{preheatBedTemp}\nM117 Done ;display message (20 characters to clear whole screen)',
|
||||||
type = 'string',
|
type = 'string',
|
||||||
subSection = 'printer_type',
|
subSection = 'printer_type',
|
||||||
description = ''
|
description = ''
|
||||||
|
@ -62,6 +62,8 @@ local SUPPORTED_PRINTERS = {
|
|||||||
colido_x3045 = "ColiDo X3045",
|
colido_x3045 = "ColiDo X3045",
|
||||||
colido_compact = "ColiDo Compact",
|
colido_compact = "ColiDo Compact",
|
||||||
colido_diy = "ColiDo DIY"
|
colido_diy = "ColiDo DIY"
|
||||||
|
colido_diy = "ColiDo DIY"
|
||||||
|
craftbot_plus = "CraftBot PLUS"
|
||||||
}
|
}
|
||||||
local SUPPORTED_BAUDRATES = {
|
local SUPPORTED_BAUDRATES = {
|
||||||
["115200"] = "115200 bps",
|
["115200"] = "115200 bps",
|
||||||
|
Loading…
Reference in New Issue
Block a user