Coding for 3d printers
Beginners Guide to 3D Printing G-Code Commands
Did you know that 3D printers have their own language? Today, many desktop 3D printers use a numerically controlled programming language made up of a series of commands called G-Code. Most of these commands start with a G (hence the name), but there are also some common machine-specific codes that start with an M. These commands tell your 3D printer exactly what actions to perform – where to move, what speed to use, what temperatures to set, and much more. For any maker, it is beneficial to have a basic knowledge of G-Code to understand how your 3D printer works, debug or perform maintenance on your machine, and verify your print files. This guide will explain the 10 most commonly used commands, what they do, and how to edit them in Simplify3D.
When slicing your model in Simplify3D the software will automatically generate the G-Code commands necessary to complete the print. You can view these commands by clicking “Save Toolpaths to Disk”, selecting a location for the file on your hard drive, and then opening the . gcode file in a text editor like Notepad or TextEdit. If you happen to be using Notepad++, you can download this handy XML file that will enable syntax highlighting for your gcode files, just like the image at the top of this article. To import the file in Notepad++, go to Language > Define your language, click Import, and select the XML file.
Although G-Code is the standard language for most 3D printers, some machines may use different file formats or commands. Even if your printer uses a different file format such as an .x3g file, please note that Simplify3D will still export both the .gcode and .x3g files to the location that you select. This is quite useful, as many of the other file formats are actually binary files. Viewing the text in the gcode file is much easier than readings lots of 1’s and 0’s in the binary files!
After you open your .gcode file in a text editor, you will notice that each command is typically listed on a separate line. The start of the line tells you what type of command it is, and then there may be several additional arguments that follow. You can even add comments within the file by placing a semi-colon before the comment so that it is ignored by the machine. So now that you have seen an example of what your 3D print files look like, here is our list of the 10 most common commands you need to know.
The 10 Most Common G-Code Commands for 3D Printing
For each command, we will provide a description of what the command does, specify what arguments may be needed, and even provide a few sample commands so that you can see how it is commonly used.
G28 – Perform Homing Routine
This command tells the printer to run its homing sequence, which will move the toolhead to the far edges of the machine until it contacts the endstops at these locations. Most of your print files will begin with this command so that the printer starts from a known location. This is also a useful way to quickly move one axis out of the way, which may be useful at the end of a print so that you can remove your part.
Arguments:
If no arguments are provided, the machine will home all 3 axes. You can also specify which exact axes you want to home by adding an X, Y, or Z to the command.
Example usage:G28 ; home all axes (X, Y, and Z)
G28 X Y ; home X and Y axes
G28 Z ; home Z axis only
G90 and G91 – Set Positioning Mode
Your printer can use either absolute or relative positioning. Absolute positioning means that you will be telling your 3D printer to move an exact XYZ coordinate. Relative positioning is used when you want to tell the printer how far it should move from the current location. Send a G90 command to tell your printer to use absolute positioning, or a G91 for relative positioning. The majority of your gcode file will likely use absolute positioning, since the slicer has already determined the exact XYZ coordinates to move to. However, if you don’t know the previous position of the toolhead, or you simply know that you want to move the head a certain distance along an axis, you can use relative positioning. While G90 and G91 control the positioning mode for the X, Y, and Z axes, you can also use M82 or M83 to set your extruder (E-axis) to absolute or relative positioning.
Arguments:
None
Example usage:G90 ; use absolute positioning for the XYZ axes
G1 X10 F3600 ; move to the X=10mm position on the bed
G1 X20 F3600 ; move to X=20mm
G91 ; use relative positioning for the XYZ axes
G1 X10 F3600 ; move 10mm to the right of the current location
G1 X10 F3600 ; move another 10mm to the right
G1 – Linear Movement
This command probably makes up 95% of your gcode files, so it is a good one to learn! The G1 command tells your printer to move in a straight line to the location that you specify. You can use this to move just a single axis, or multiple axes at once. Keep in mind that your extruder is controlled just like any other axis, so you can also use this command to extrude or retract filament from the nozzle.
Arguments:
Use X, Y, or Z values to tell the printer what position to move to. Keep in mind that these values will obey the current positioning mode, so you can specify them using either absolute or relative coordinates. Include an E value if you want to move the extruder as well. The E value corresponds to the position of your filament spool, so if you move the E axis by 10mm, that would cause 10mm of your filament to be pushed into the nozzle. Since the nozzle diameter is usually much smaller than your filament diameter, 10mm of filament pushed into the nozzle may create an extrusion that is hundreds of millimeters long! For this reason, the E values that you will see in your file are typically quite small compared to the X, Y, and Z values. Finally, you can use an F value to tell the printer what speed to use for the movement. This speed must always specified in units of mm/min, so even if you use mm/s in your slicing software, you will still need use mm/min anytime you are sending a command directly to the printer.
Most printers support “sticky” coordinates, which means that you only need to specify the arguments for the axes you actually want to move. So if you only wanted to move the Z axis, you would just include the Z argument as well as an F value to define the speed.
Example usage:G1 X0 Y0 F2400 ; move to the X=0 Y=0 position on the bed at a speed of 2400 mm/min
G1 Z10 F1200 ; move the Z-axis to Z=10mm at a slower speed of 1200 mm/min
G1 X30 E10 F1800 ; push 10mm of filament into the nozzle while moving to the X=30 position at the same time
G92 – Set Current Position
Use this command to set the current position of your axes. This can be useful if you want to change or offset the location of one of your axes. One of the most common uses for this command is actually with your E axis (the filament position). You can quickly override the current filament position so that all future commands will now be relative to this new value. It is common to do this at the start of each layer or right before a prime or retraction command.
Arguments:
Specify the absolute coordinate for any axis that you wish to overwrite. You can include the X, Y, Z, and E axes. If you do not include one of these axes in the command, the position will remain unchanged.
Example usage:G92 E0 ; set the current filament position to E=0
G1 E10 F800 ; extrude 10mm of filament
M104 and M109 – Extruder Heating Commands
Use these commands to set the temperature of your extruder. The M104 command starts heating the extruder, but then allows you to run other commands immediately afterwards. The M109 command will actually wait until the desired temperature is reached before allowing any other commands to run. For this reason, you will frequently see an M109 at the top of your Simplify3D gcode files, as this allows the extruder to reach the necessary temperature before the print begins.
While most machines use M104 and M109, some firmwares may use slightly different commands. For example, if you are using a machine that reads x3g files, then you may use an M133 command for stabilizing your extruder instead of M109. If you are using a machine that runs a variant of the FlashForge Dreamer or Dremel firmwares, you’ll want to use an M6 command to stabilize your extruder. You can check what firmware type you are using in Simplify3D by going to Tools > Firmware Configuration.
Arguments:
The S value specifies the extruder temperature in degrees Celsius. The T value can be used if you have more than one extruder, as it allows you to specify which exact extruder temperature you want to set. If you have a dual extrusion machine, typically T0 is the right extruder, and T1 is the left extruder. If you only have a single extruder machine, you can typically omit the T parameter entirely.
Example usage:M104 S190 T0 ; start heating T0 to 190 degrees Celsius
G28 X0 ; home the X axis while the extruder is still heating
M109 S190 T0 ; wait for T0 to reach 190 degrees before continuing with any other commands
M140 and M190 – Bed Heating Commands
Use these commands to set the temperature of your heated build platform. The syntax is very similar to the M104 and M109 commands mentioned above. Sending the M140 command begins heating the bed, but allows you to run other commands immediately afterwards. The M190 command will wait until the bed temperature is reached before allowing any other commands to run. Keep in mind that the heated bed on your printer may take several minutes to reach elevated temperatures. So don’t be surprised if you see your printer pausing while waiting on an M190 command to finish heating the bed. Because this process can take a long time, it may be a good idea to start heating the bed at the beginning of your routine using an M140 command, which would allow you to do other actions such as homing or nozzle purging while the bed is still pre-heating. Just make sure to include an M190 before the print begins, as the bed temperature can be an important factor for first layer adhesion.
As with the M104 and M109 commands, these bed heating commands can differ depending on what firmware you are using. If your machine reads x3g files, then you can use the M134 command for stabilizing your bed instead of M190. If you are using a variant of the FlashForge Dreamer or Dremel firmwares, you’ll want to use an M7 command to stabilize your bed.
Arguments:
The S value specifies the bed temperature in degrees Celsius. No other arguments are typically needed, as most machines only have a single heated build platform.
Example usage:M140 S50 ; start heating the bed to 50 degrees Celsius
G28 ; home all 3 axes while the bed is still heating
M190 S50 ; wait until the bed reaches 50 degrees before continuing
M106 – Set Fan Speed
This command allows you to set the speed of your printer’s part cooling fan. This is an external cooling fan that is pointed towards the part that you are printing. Keep in mind that your printer may also have an extruder fan that helps cool the extruder drive mechanism, so make sure you are looking at the correct fan first. While most printers have an external cooling fan, there are a few exceptions, so check your machine first to make sure it has an external cooling fan that you can control.
Arguments:
The S value sets the speed of the cooling fan in a range between 0 (off) and 255 (full power).
Example usage:M106 S255 ; set the fan to full speed
M106 S127 ; set the fan to roughly 50% power
M106 S0 ; turn off the fan completely
How to Send or Edit G-Code Commands
If your machine accepts normal gcode files like most RepRap machines, then a great way to test different commands is by manually sending them one-at-a-time to see how your printer responds. You can do this within Simplify3D by going to Tools > Machine Control Panel. Once in the Machine Control Panel make sure you are connected to your 3D printer and then use the Communications tab to send your printer a line of G-Code. Just type the command that you want to send at the bottom of the window and then press the Send button. None of the commands mentioned in this article are permanent, so you can always reboot the printer if you want to stop what the machine is doing or get back to a fresh state.
Once you feel comfortable with the commands, you may find that you want to run the same series of commands before or after each print. Thankfully, Simplify3D gives you the ability to customize the routines that are run at the start and end of each print, so you can easily update your settings so that your 3D printer automatically performs these actions. To do this, click “Edit Process Settings” and then select the Scripts tab. There are several different scripts on this tab that you can edit. Each one is used at different times during your print. For example, the Starting script is used at the very beginning of the print, while the Ending script is run at the very end of the print. Depending on where you want to make your changes select the appropriate categories and start editing. The default profile that Simplify3D provides for your 3D printer will already include scripts that we have tested and verified, so you can use these as a starting point.
Each time you make a change to these scripts, you can try running a quick test print to make sure the printer behaves like you would expect. Once you are happy with the changes, you can use Simplify3D’s profile management system to permanently save these new settings for future prints. You can even create multiple versions of your profile if you want to keep track of your changes along the way.
We have now covered all the fundamentals you’ll need to begin testing G-Code on your 3D printer. If you are interested in other tutorials like this that can help teach you the basics of 3D printing, click here to view our full article library.
View the Complete Article Library
3D Printing Gcode Cheat Sheet: Basic Demands
Jun 14, 2020
Just as humans use language to interpret and understand actions and commands, 3D printers have their own language: Gcode demands.
Gcodes instruct 3D printers on every action the printer must take, including movements, speed, temperatures, and much more. Having a basic understanding of what gcodes are will help you in your 3D printing processes by allowing you to work more efficiently and possibly even more creatively.
We’ll review all the basics you need to know about gcodes: how they work, how to read a line of gcodes, and a gcode cheat sheet.
Basic Guide to 3D Printer GCodesSimply put, a gcode is a programming language that tells the printer what to do. These actions can include where the printer head goes, extruder temperature, bed temperature, pauses, printer head speed, and more.
Gcodes are actually used for a variety of machines, not just 3D printers! Cutting tools likes lathes and mills also rely on Gcodes.
On your computer, a g-ode will be a .gcode file. You can view the line by line code of the gcode by opening it in a text editor.
Gcodes are typically hundreds of pages long since they are directing every single action the printer is taking. Although gcodes are considered a fairly easy coding language, it is not recommended to write your own gcode: they are very complex, long, and if done incorrectly they can damage your printer. This leads us to our first question:
How are GCodes created?Gcodes are created when you import an STL file into a slicing software. The slicing software will then configure a code based on the specificities of your 3D print’s design. The code is then sent to your 3D printer to bring the digital file to life.
Gcodes come in towards the end of the 3D printing workflow, but they are crucial for the success of your 3D print coming to life. A 3D design is made in a CAD software and exported as an STL, the STL file is then imported into a slicer software, like BCN3D Cura. Within the slicer software, you set your parameters, and then the software will create and export the .gcode. That file is then sent to the 3D printer through an SD card or wifi. The printer then uses each line of code for every action that it will take.
How to Read GCodeGcode is a fairly simple and easy to understand code language. Each line of code tells the printer to perform one specific action, which is why there can be thousands of lines for just one print!
Although called gcode, it is actually made up of several different letters and numbers that have specific meanings or instructions. Also, gcodes don’t always start with the letter G. Geometric commands, or commands that deal directly with printing the object, start with a G. Non-geometric commands start with an M. An example of a non-geometric command could be setting the bed temperature or extruder temperature.
Here is an example of what a Gcode could look like:
56 G1 F2200 X22.3 Y56.4 E5.9
Let’s dive into the specific meaning of each letter and number you see:
- The first number: The first number you will see on a line of gcode is just specifying which number line you are on. Gcodes all exist on their own line, with the first line being 1.
- G or M followed by a number: A G or M with its corresponding number indicates a specific action that the printer must take. For most printers, these letter-number combinations are universal. Think of this as the “what” of the printer’s action, and the following numbers and letters as the “how.”
- X followed by a number, and Y followed by a number: These letter-number combinations indicate the x and y coordinates of where the printer head must go. Some gcodes may also include a Z coordinate.
- F followed by a number: The F in the gcode indicates the feed rate. Essentially, this tells the printer how fast or slow to move the printhead.
- E followed by a number: This tells the printer how much filament will be discharged from the extruder.
There are some additional letters and numbers that are used for M codes. For example, T indicates which extruder is being used, starting with T0 and moving up based on the number of extruders. S indicates the degree in celsius for an extruder.
Gcode Cheat SheetNow that you know what the letters stand for, let’s take a look at some common Gcode commands and their meanings.
G0 and G1: MoveThis commands the print head to move in a straight direction. The print head will move to the indicated X and Y coordinates. The difference between G0 and G1 is filament extrusion, as G1 commands the printer to push out filament while G0 moves the print head without filament extrusion.
The E and F in the code will tell the printer how quickly it needs to move to that location and how much filament should be extruded during this time. This is the most commonly used gcode command.
G90 and G91: Absolute and Relative PositionAbsolute position (G90) means that the printer head must move to the exact position indicated by the x and y coordinates.
Relative position (G91) means that the print head must move using the numerical values of the x and y coordinates, but not necessarily to those spots.
For example, if a line of code reads G90 G1 X40, then the print head must move to the X=40 position on the bed. But, if the line reads G91 G1 X40, then the print head must move 40mm from where the print head is currently located.
G28: HomeThis command sends the print home back to its “home”, the X0 andY0 coordinates.
M104 and M109: Heat ExtruderBoth M104 and M109 will heat the extruder to a specific temperature, the only difference is that an M104 command will allow the printer to take other actions while the extruder is heating and an M109 command will pause all activity until the final temperature is reached.
M140 and M190: Heat Print BedM140 and M190 work similarly to the above M commands except they deal with the temperature of the printing bed. An M140 command means the printer can take other actions while the bed is heating, and an M190 command will pause all actions until the bed is fully heated.
ConclusionSome professionals may go their entire career without ever dealing with Gcodes, but having a basic understanding of how they work can actually aid you in your 3D printing workflow. Understanding how your 3D printer interprets commands and takes actions can help you if any problems occur with your printer and can even help you come up with new creative ideas for print projects.
8 most common 3D file formats
3DPrintStory     3D printing process     8 most common 3D file formats
There are different formats for storing information about 3D models. Surely you have heard about the most popular ones like: STL, OBJ, FBX, COLLADA, etc. They are widely used in 3D printing, video games, film, architecture, medicine, construction and education. At the same time, each of the listed areas has its most popular formats, which were formed due to historical or practical reasons. In the article below, we will look at the various file formats of 3D models and dwell in more detail on the 8 most popular today.
What is the 3D file format?
The main purpose of a 3D file is to store information about a 3D model in the form of a plain text or binary file. In essence, they encode information about the geometry, appearance, scene, and animation of a 3D model.
The geometry of a model describes its shape. Appearance includes colors, textures, material, etc. A scene refers to the location of light sources, cameras, and peripheral objects. Well, animation characterizes the movement of a 3D model.
However, not all 3D file formats store all of this information. For example, the STL format stores only information about the geometry and ignores the rest of the data. On the other hand, COLLADA stores all this data.
STL and COLLADA are just two of the many formats that are used in practice. Today there are more than 100 3D file formats!
How many 3D file formats are there?
There are hundreds of 3D file formats. Why are there so many? Mainly due to the fact that each developer of CAD software (for example, AutoDesk or Blender) has its own file format optimized specifically for their software. So if you are using AutoCad you will most likely be working with DWG files, and if you are using Blender you will be working with BLEND files.
Native 3D file formats are a problem...
Suppose you are using AutoCad (an AutoDesk product) and your friend is using Blender. And let's say you want to share your 3D model with a friend.
And here it turns out that everything is not as simple as we would like . .. Your AutoCad outputs a DWG file, since this is its "native" format. But Blender (your friend's software) only works with BLEND files. That is, you will not be able to work on the same 3D model together.
Universal 3D file formats solve the problem
Universal or open source formats are used to solve the compatibility problem. And of course, these formats have become very popular.
The two most popular universal formats are STL (.STL extension) and COLLADA (.DAE extension). They are very widely used to exchange 3D medal data between CAD programs. If you want to share your 3D model, you can convert the DWG file to COLLADA format - this process is called "export". Your friend takes this COLLADA file and imports it into Blender, where the COLLADA file is converted into the native BLEND format. Thus, you can use different CAD programs and still exchange data.
Proprietary and generic formats are the main fork in the world of 3D file formats. To date, most 3D modeling software has the ability to read and write popular universal formats. In addition, most programs also support the ability to work with formats from individual vendors that have become so common that they simply cannot be ignored. It is these proprietary and universal formats that we will consider below.
The table below summarizes the 8 most popular 3D file formats and their types.
before the end to the detailed. Let's deal with the important points that will help you choose the right format for your project.
General characteristics of different 3D file formats
We have already mentioned most of the characteristics above.
3D Model Geometry Encoding
Each 3D model has a unique geometry and this geometry encoding is the basis of any 3D model file format.
There are three principal methods for encoding surface geometry, each with its own advantages and disadvantages. These are approximate mesh, precise mesh, and constructive solid geometry (CSG).
Approximate mesh
During this encoding method, the surface of the 3D model is covered with a mesh of small imaginary polygons. Triangles are the most commonly used. The file saves the vertices and normal vectors to the sides of the triangles. Thanks to this, it is possible to accurately display the surface geometry of a 3D model.
Triangles approximate smooth surface geometry. Hence the name - approximating grid. The smaller the size of the triangles, the better the approximation. At the same time, the smaller the triangles, the more they are needed to cover the surface and, accordingly, more data about vertices and normals is stored in the source file. That is, the better the approximation, the larger the file size of the 3D model.
3D files that use approximation are great for tasks where there are no high requirements for 3D model resolution. Since 3D printers have certain limitations in resolution, it is in them that such 3D files are widely used. The most popular 3D model format for 3D printing - STL - belongs to this type.
Fine mesh
https://all3dp.com/3d-file-format-3d-files-3d-printer-3d-cad-vrml-stl-obj/
Various file formats for 3D printing・Cults
With the development of digital technology, 3D printing has become much more accessible today. Individuals and professionals can have their own equipment and make various print models. All that is required is a good understanding of the basic concepts, especially in relation to the respective file formats. Indeed, depending on the field and for historical or practical reasons, certain file formats are preferred for 3D printing. Here are the most common 3D printing formats and their main characteristics.
STL is short for "Stereolithography", one of the oldest file formats for 3D printing. Developed in the late 1980s, this type of format is still widely used today. It describes the surface geometry of a 3D object without displaying color, texture, or other attributes. The STL format has the ".STL" extension. These files are generated by computer-aided design (CAD) software. Programs such as FreeCAD, Blender, MeshLab, MeshMixer, SketchUp, SculptGL, and 3DSlash can be used to edit and repair STL files.
The STL file simplifies a 3D surface into a "tessellation", a series of small triangles that increase in number when it is necessary to represent and recreate curved surfaces as best as possible. When a large number of triangles need to be used, the size of the 3D model STL file increases rapidly.
The OBJ file format is also very popular in the 3D printing industry. Its extension is ".OBJ". It has the advantage that it also encodes color and texture information, which is stored in a separate file with a ".MTL" extension. OBJ files allow the use of non-triangular faces, with one face adjoining another. They can be opened with programs such as Autodesk Maya 2013, Blender and MeshLab .
Developed in the 1990s, 3DS is a file format that stores only the most basic information about geometry, appearance, scenes, and animation. It allows you to save properties such as color, material, texture, transmissivity, etc. With the ".3DS" extension, this 3D printing file format also has the advantage that it can be read by most programs on the market, such as 3dsMax, ABViewer, Blender, MeshLab, messiahStudio, Rain Swift 3D, SketchUp, TurboCAD etc.
The SLDPRT file or its .SLDPRT extension is a 3D printing image format used by the SolidWorks CAD software. It contains a 3D object or "part" that can be combined with other parts into a single ".SLDASM" assembly file. SLDPRT files are usually opened with the SolidWorks program. However, they can be viewed using SolidWorks eDrawings Viewer, Autodesk Fusion 360, Adobe Acrobat 3D, Acrobat Pro 9 or later .
The SCAD format (.SCAD extension) is generated by OpenSCAD, a freeware modeling program used for various 2D and 3D projects. The SCAD file can be used to design 3D objects, specifying the object's geometry and positioning information. It can only be opened with OpenSCAD .
The .BLEND format is an extension used for 3D animation and projects designed with Blender's 3D modeling tool. This file type can contain multiple scenes as well as all project elements such as objects, textures, 3D meshes and real-time interaction data, sounds, lighting data, animation keyframes, display layouts, and interface settings. Please note that only Blender can work with this 3D file format.
A 3MF file (.3MF extension) is used by various design programs to save 3D models for printing. This format includes model, material, and property data compressed using ZIP compression. 3MF files also store a print ticket, a thumbnail image, and one or more digital signatures. They can be opened with programs such as Microsoft 3D Builder, Microsoft Paint 3D, Dassault Systemes SolidWorks, Dassault Systemes CATIA, McNeel Rhino, PTC Creo and Ultimaker Cura .
The .GCODE file contains commands that define how the 3D printer should print. It stores instructions such as print speed, set temperature, and where to move print items. This 3D file format is created with cutting software such as Simplify3D and Slic3r. Reading can be done with Simplify3D, as well as Blaze3D, GCode Viewer and NC Viewer.
A .SKP file is a 3D model format created by SketchUp. This takes into account wireframes, textures, shadows, and edge effects. This file type is also used to store components that will be inserted into the document. Of course it can be opened with SketchUp, but also with programs like IMSI TurboCAD Pro or Deluxe, Okino Computer Graphics PolyTrans, ACCA Edificius and Trimble 3D Warehouse .
FBX is a 3D printing file format popular in the film and video game industry. Developed by Kaydara and acquired by AutoDesk, it supports geometry and appearance properties such as color and texture, as well as skeletal animation and morphs. AutoDesk will use the ".FBX" FBX file as an interchange format for its software portfolio such as AutoCAD, Fusion 360, Maya, 3DS Max, etc.
Other file types are not exclusive to 3D, but are regularly used in the field.
A .RAR file is an archive containing one or more compressed files. The compression ratio of this format is greater than that of the classic ZIP compression. It is used to compress files to reduce their size for easier transportation and storage. You can extract files from RAR archive using various unpacking programs such as RARLAB WinRAR, Corel WinZip or B1 Free Archiver .
.DWG files are databases of 2D or 3D models created in AutoCAD. They consist of information about the vector image and metadata that describes the contents of the file. There are many utilities available to open this file format, including: Autodesk Auto CAD, Autodesk Inventor, Autodesk Design, Autodesk DWG, AutoDWG DWGSee, CADSoftTools ABViewer, Canvas X, Adobe Illustrator, Bricsys Bricscad, etc.
Used in 3D editing programs such as Adobe Photoshop and Autodesk Maya, the .MTL format is used to store material settings. This file is stored along with another in .OBJ format and is used to describe how textures should be applied and the 3D coordinates they should be applied to.
This page has been translated using machine translation. Suggest the best translation
Previous
ShareNext
Similar publications
Since their invention, 3D printers have proven that printing many objects is much more efficient than conventional manufacturing techniques. However, calibration is required for optimal performance when printing 3D parts. Many 3D printer owners find this procedure tedious and time-consuming. However, it is much easier than it seems if you know the right tips on how to do it. Cults3D presents the various steps you need to follow in order to successfully calibrate your printer.
Read moreThe plate is one of the most important parts of a 3D printer.