@asdfasdf426
These are my old 280 files. Maybe a better starting point.
https://drive.google.com/file/d/1K6EtdznTIZRGNCmrj5GTYIlvQVWrrL8o/view?usp=sharing
These were my notes to myself.
ST3Di Modelsmart 280
Printer Profile
Explains how to setup a new printer profile, also where to save/edit the files.
https://github.com/Ultimaker/Cura/wiki/Definition-Files-Explained
Created by GH (15/5/19)
Updated version (20/05/2019) NOTE: May need to switch the left and right extruders in the definitions to match Cura. Currently Material 1 prints on the right extruder, I think logically you'd want it on the left and Material 2 on the right?
If you want a representation of the build plate (helps with positioning). Then save this to the meshes folder
Material I created (PLA)
In addition I wanted to find a way to have Cura save out the gcode files with the ebp extension. Using this link I was able to find a way….
https://github.com/Ultimaker/Cura/issues/1059
Save the file below to this location.
C:\Program Files\Ultimaker Cura 4.0\plugins\GCodeWriter
Copyright (c) 2015 Ultimaker B.V.
Cura is released under the terms of the LGPLv3 or higher.
from . import GCodeWriter
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
return {
"mesh_writer": {
"output": [{
"extension": "ebp",
"description": catalog.i18nc("@item:inlistbox", "G-code File"),
"mime_type": "text/x-gcode",
"mode": GCodeWriter.GCodeWriter.OutputMode.TextMode
}]
}
}
def register(app):
return { "mesh_writer": GCodeWriter.GCodeWriter() }
The next thing I'd like to figure out is how to edit or stop Cura adding text to the start of the output file. This needed to be deleted before you can print.
Example: Yellow text need deleting or a way of having the ebp@280 line first (I think the printer FW looks for this to authenticate the file is suitable for the printer).
;FLAVOR:Marlin
;TIME:5405
;Filament used: 5.85157m, 0m
;Layer height: 0.2
;Generated with Cura_SteamEngine 4.0.0
T0
M82 ;absolute extrusion mode
ebp@280
pla@1
pla@1
null@0
version@1_2_36@null@null
T0
M190 S40.0
M104 TO S210.0
G21
G90
M107
T0
G28
G29
M109 TO S210.0
M107
T0