Beginner’s Guide to Getting Started with Ender 3 3D Printer

Introduction: 3D printing has revolutionized the way we manufacture and create objects, from small trinkets to large-scale prototypes. The Ender 3 3D printer, developed by Creality, is a popular and affordable option for those looking to dive into the world of 3D printing. This article provides a beginner’s guide to getting started with the Ender 3, including essential components, setup, and basic troubleshooting.

  1. Essential Components: The Ender 3 3D printer comes with several essential components, including the printer itself, a power supply, and a USB cable. Additionally, you’ll need to purchase filament, which is the material that the printer uses to create the object. PLA filament is a popular choice for beginners due to its ease of use and versatility.
  2. Setup: Setting up the Ender 3 3D printer is relatively straightforward. First, assemble the printer by following the instructions included in the box. Next, connect the printer to the power supply and plug in the USB cable to connect it to your computer. Download the necessary software, such as Cura or Simplify3D, and configure the printer settings, including the bed temperature, filament diameter, and print speed.
  3. Bed Leveling: Proper bed leveling is essential for successful 3D printing. The bed is the surface on which the object is printed, and if it’s not level, the object may not adhere properly or may warp. Follow the instructions to level the bed by adjusting the screws beneath it until it’s even.
  4. Filament Loading: Load the filament by inserting it into the printer’s extruder and feeding it through the tube until it reaches the hot end. Ensure that the filament is inserted correctly to prevent any clogs or jams.
  5. Printing: Once the bed is leveled and the filament is loaded, you’re ready to start printing. Select a model to print from the software and adjust any settings as necessary. Begin the print job and monitor it closely, checking for any issues like filament jams or improper adhesion.
  6. Basic Troubleshooting: If you encounter any issues during printing, there are a few basic troubleshooting steps you can take. Check the bed leveling, ensure the filament is loaded correctly, and adjust the print speed or temperature as needed. If the print fails, try adjusting the slicer settings, such as the layer height or infill density.

Conclusion: Getting started with the Ender 3 3D printer may seem daunting, but with the right tools and knowledge, it’s a rewarding and exciting endeavor. By following the essential steps, including setup, bed leveling, filament loading, and basic troubleshooting, you can create intricate and high-quality 3D prints. Remember to experiment with different filament types, models, and settings to discover the full potential of your Ender 3 3D printer. Happy printing!

HOW TO: PID Auto-Tuning for Ender 3 and Other 3D Printers

Swings in temperature for your 3D printer’s hot end, such as the Ender 3, is just plain no good for quality print results. Steady, controlled heat is what you are looking for and getting it right can be great for your print results. PID auto-tuning is a way to control the temperature by using an algorithm to determine the values that the printer uses to heat and maintain temperatures. Below you will find the instructions to set your PID values. This method is going to change the values that are stored in your printer, and used every time it heats. This method is great for setting the PID values if you use very similar filament, and cooling most every time you print. If you use a lot of varying filament, or use cooling on some and not on others, you will want to modify your slicer printer settings to set the PID values for each configuration. Lets take a look:

  • First off, use a terminal command processor to send commands to your printer – such as OctoPrint, Repetier Host, or Simplify 3D.
  • Start your printer in a cooled state, with the material you are going to use (such as PLA) primed in the hotend – either from a previous print or heat the printer and push through a few inches of filament and let it cool back down
  • Start the cooling fans if you intend to use them as part of the results you want from the PID test. Send the command M303 E0 S205; to the printer for a temperature of 205C – change the S value to whatever target temperature you are looking to get stable heating for like this:
M303 E0 S205;
  • The printer will take about 5 minutes or so and run through the auto-tune test.
  • When it is complete, Marlin will spit out the test values for P, I and D looking something like this near the end of the output:
Recv: PID Autotune finished! Put the last Kp, Ki and Kd constants from below into Configuration.h
Recv: #define DEFAULT_Kp 27.44
Recv: #define DEFAULT_Ki 3.60
Recv: #define DEFAULT_Kd 52.26
Recv: ok
  • Now tell your printer that you have new defaults, sending in new values for the PID values that you received from the test. In my example I send it the values like this
M301 H1 P27.44 I3.60 D52.26;
  • And it returns a success looking like this:
Recv: echo: p:27.44 i:3.60 d:52.26
Recv: ok
  • Next up, you will want to save your settings to the firmware, or the next time you cycle the power, you will lose the settings, so send the save settings command like this:
M500;

There you go, you should be all set to go with stable PID settings that make your printer produce better prints . A couple of quick things to note:

  1. I have seen some varying settings and re-running the whole thing a few times will give you interesting variations in the values returned. The first time I ran this on a printer, the resulting values produced oscillating temperatures (around +-4 degrees C) which is a little too much. You are looking for tight temperature ranges – I was happy with the settings above that roughly stayed very solid in the 204-206 degree C range. Re-running the test a few times you may find a set of values that really tighten it up for you as well.
  2. Remember, if you are swapping in another brand of filament, a different type of filament (like going from PLA to PETG), or using fans vs. no part fans, you will want to either re-run this test and store them in firmware to use until you change them again, or send the M301 command in your printer profile with each of the values for P, I, and D for the configuration each time you go to print. This method takes a little more work, but ensures that the settings are correct for the config you are intending to use.

That’s it for today, if you have a comment or tip leave it below – we would love to hear from you. Happy printing!