title_body
stringlengths
20
149
upvoted_answer
stringlengths
32
13.1k
Homing a stepper motor as an extruder using E0/E1 with an limit switch and end stop
The edited question appears to mention that the actual extruders of the print head need to home / limit themselves. The answer is that this is not required. When operating direct or Bowden driven extruder setups, you know (or you can measure or find out experimentally) the distance that the filament has to travel from extruder entry to hot end (e.g. to load new filament). If already loaded, because you have printed before, you also know where the filament is (filament could stop after printing, personally I retract the filament en few mm after a print). When a new print starts you usually reverse the retraction at temperature and extrude some extra filament to prime the nozzle to counteract oozed out filament for instance. At that point, the nozzle is primed and the gcode G92 E0 is then used to tell the extruder this is the start at zero length, sort of the home position of the filament. All this is usually done in the start code of your slicer, similar to disabling bed and hot end temperature or final retract is done in the end code of your slicer. This answer below addresses the initial question, this question was not quite clear. It was phrased as of the head containing the extruders needed to be homed correctly. The normal end-stops (can be mechanical or optical switches) already ensure that the printer head (containing the extruder or extruders) is homed correctly (if correctly configured in your printer firmware). The home offsets you define in the firmware define that you start at the origin (0,0,0). Your question does not state what firmware you use, but e.g. in Marlin firmware these settings are found in the firmware configuration file. In this file the following is defined: // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS 0 #define Y_MIN_POS 0 These values must be changed according to the offset between your switch and the origin of the heat bed (e.g. Prusa style printers have the origin at the front left). For my Prusa clone printer I have defined: // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS -35 #define Y_MIN_POS -12 What this says is that the homing switch for the X axis is 35 mm left of the origin, etc.
Adding a custom printer to Cura
Your manual is in another Castle! The manual you look at is for Cura (1) 15.04. You are however using Ultimaker Cura 3, most likely the most recent 3.6. Quick references The machine setup is for the physical settings of the machine - build volume, nozzle diameter, coordinate system and such. The other settings you refer to are all set in the right bar, but you will have to switch from simple to advanced mode, and possibly activate the settings you need.
What is the best technique to improve removing PETG from the print bed?
Correctly level your bed. Seriously, that's the answer. PETG does stick well, but it only gets difficult to remove if you're smashing the first layer against the bed with a nozzle that's way too close. With the bed leveled properly - using feeler gauges or test prints and a sub-0.1-mm-precision caliper - I have no trouble taking PETG prints off a buildtak-clone bed. Glass should be easier. If you already have PETG stuck to a build surface you care about and don't want to risk destroying it, try heat, or alternating heat and cold.
How do you program a 3D printer?
The foundation of any 3D printer is the controller and the firmware. Many devices are based on Arduino type controllers, with stepper motor driver boards either integrated or added as a plug-in component. Some manufacturers will use in-house or outside resources and develop their own boards and firmware. You can search for 3D printer controllers and get a pretty comprehensive list of the various devices available for purchase. Smoothieboard is one device, Raspberry Pi and Arduino as noted above, and others. There can be found varying "flavors" of firmware to load onto these controllers as well. The field is exhaustive. To address your focus regarding the printing aspect, that's one stepper motor per print head/nozzle (usually) and involves calibrating the amount of filament dispensed from the nozzle per unit steps, or more easily understood, amount of steps per unit of filament movement. My stepper motor for the extruder has a planetary gear and moves 100 mm of filament for about 5000 steps. All of the parameters you've noted are integrated with the firmware. Motor calibration requires movement per step or steps per millimeter to be entered, unless you purchase a turnkey system with the values loaded. You can adjust many of the parameters from the slicing software, but it's more practical to determine the calibration settings, enter that information into your slicer and proceed with model management. Look into instructables for others' build projects to see what they've accomplished and the steps involved in such a build. This can give you a starting point for your efforts.
CTC i3 Y-axis thin / no filament deposition
I can see a couple of problems in your images: Your bed is clearly and awfully unleveled. Check on Youtube some manual leveling using a paper. Though I think your problems will be solved by correct leveling, if not, check this thread where I explain a little bit about E-step and flow rate calibration. Having these parameters right is crucial for a good first layer. I don't know what you are using for layer adhesion but if after doing steps 1 and 2 the problem persists I would heat up a little bit the bed and change the adhesion material (glue, hairspray).
Turning off heatbed for the last few layers. Good idea or not?
It's not a bad idea, and you should try it. But only on prints with some height, because: The goal of the heated bed is to ensure adhesion for the first few layers. Without the heat on the bottom side of the layer, the layers above will pull those layers with it as they cool, causing the warp that you see. When your bed is warmer than the layers above, those first layers stay with the warmth. This continues as the layers above are pulled into adhering to the bottom layer instead of going rogue. Print some objects that are taller than 10 layers, and see. When you succeed, get scientific and dial down the amount of layers until you see warp. Then you'll know which object height you can employ this.
I can not really connect successfully to my printer via USB
The Simplify3D support site mentions to disable the "wait for startup command" option in the firmware configuration for S3D. This allows me to make a rudimentary connection to control the printer, however e.g. during the bed levelling wizard of S3D, the connection still breaks off. It works reliably with Octoprint. I'll consider that good enough.
3D Builder is Saying "One or more objects is invalidly defined"
How thick are those walls? 3D printers cannot print zero-width surfaces (and slicers cannot slice them). 3D Builder has tried to make your model printable, but obviously not in the way that you might have hoped for. You need to go back to Sketchup (or some other CAD package) and give the walls a definite thickness (and one big enough for a 3D printer to handle).
What resolution (pixels/mm) should I use in SVG for CNC?
I found one of those printer things that puts ink on dead trees and tested to print a simple SVG file. <svg xmlns="http://www.w3.org/2000/svg" width="400px" height="800px"> <rect x="10" y="10" width="72" height="72" fill="#999999" /> <rect x="10" y="100" width="378" height="378" fill="#999999" /> </svg> As I suspected 72 pixels came out pretty much exactly 19mm. (72/19.05)*100~=378 came out 100mm. Given this I am going to assume that 72/19.05 is the de facto best pixel to mm ratio to use for CNC projects. EDIT: Found this documentation: http://w3.org/TR/SVG/coords.html#Units <svg xmlns="http://www.w3.org/2000/svg" width="400px" height="800px"> <rect x="10" y="10" width="19.05mm" height="19.05mm" fill="#999999" /> <rect x="10" y="100" width="100mm" height="100mm" fill="#999999" /> </svg> Much simpler to use mm as units right away
How to combine difference with concatinate object
The union syntax addresses this: translate([-40,-40,0]) difference() { union() { cube ([90,28,12]); translate([20,0,20]) cube([12,12,12]); } translate([12,-.01,5]) cube([12.7,28.02,14.02]); translate([65,-.01,5]) cube([12.7,28.02,14.02]); } It supports creating an object before the difference syntax is applied.
Avoiding stringing with flexible filament
You could enable combing in the slicer. Combing not only prevents retracts, it also uses already laid down paths for movement from one to the other location and as such reduces the amount of stringing.
How to design a worm-gear in FreeCAD?
As far as I know there is not a workbench capable of producing the design you want with a single click "new worm gear". But it is a rather simple affair to create the part you want from scratch. What you want to do is to sweep a sketch along a helix. It is a very similar process to the one you would follow to create a thread documented in the official tutorial (it's the "method #3" on that page). This is how it should look like: Since helices are subject to a few limitation in FreeCAD, I recommend to read the section called "tricks to success" and the following tips, as it is very likely you will incur in problems otherwise.
CR 10 mini not detecet as Serial interface (Win 10)
I use linux, so I am not familiar with Win10 stuff. But, it seems that the device driver has asked the USB device for its identifying codes (PID and VID) and got no recognisable response. Could be a bad cable, but you seem to have checked that. Could be a fried USB interface chip, so check whether you have any luck trying to connect to any other computer. If you can find someone with a linux machine (or you have something you can run linux on), the logs will tell you a lot more about what has been tried and what failed (or not). Note that the parent USB device is VID=8087 (being Intel Corp.) and PID=0024 (being the Integrated Rate Matching Hub) - see https://devicehunt.com/search/type/usb/vendor/8087/device/0024.
Extruder motor does not stop after G1 E5
If the printer is in absolute positioning mode (which is used almost exclusively), then the extruder will either wind back or wind forward to the last 5mm point. Effectively, the firmware treats the extruder like any other axis, and you can set the origin whenever and wherever you like (it doesn't have to be the home position). Use G92 to reset the extruder position as follows: G92 E0 ; Set the extruder position to 0 (origin) G1 E5 ; Extrude 5mm of filament G92 E0 ; Set the extruder position to 0 again This is the usual way to purge filament in the slicer's start and end code. Note that you cannot rely on the current position being zero.
Calibration of Z axis in Simplify 3D
The steps per mm in firmware is the link to the hardware configuration/setup. Reducing by half must reduce Z advance by half. If your prints are twice as tall, you must have serious under-extrusion problems as when the printer is laying down molten filament for e.g. a 0.2 mm layer, in effect this is a 0.4 mm layer. If this is not the case, you should also calibrate the extruder. Please re-calibrate your machine Z axis in firmware (most firmwares allow command M92 to set the steps per mm), not in Simplify3d, and then the extruder.
Technique for removing support from Ultimaker 2+?
The Ultimaker 2+ is a single extruder 3D printer. Without changing the PLA spool and PVA spool continuously during the print you practically cannot make water soluble supports on the Ultimaker 2+ which can be done on the Ultimaker 3. Note that PVA (from experience) is strange material to print, the filament is very hygroscopic and will form bubbles during printing when moist. Also, PVA is prone to clog the nozzle (it cooks easily) it therefore has its own printer core (nozzle assembly) on the Ultimaker 3 (still it clogs easily). Furthermore, it takes a while to dissolve in water. If you have a single extruder and nozzle, your best option is to use the same material for support, but modify the support settings as such that it can be easily removed. E.g. on thin layer heights (0.1 mm) I usually increase the gap between support and product over the default value, see this answer. On dual extruder printers, e.g. on the Ultimaker 3 and S5, my colleagues have better experience using Ultimaker Breakaway filament rather than using PVA. As with the PLA supports, you need to "break them away" from the actual product; I use a Leatherman Charge or FREE P4 as these tools have fine pointed pliers. Note that there are removal tools available that are best described as soldering irons that can aid in the removal of support structures: Note that I have mixed feelings about this product; it is hard to neatly remove supports using these small soldering irons, but it sometimes works.
Can't create image to G-code software for CNC to process
Generally, movement in a CNC, FDM-Printer, laser cutter, and Plotter has the XY plane decoupled from the Z-axis in most operations. As a result, the path in the XY plane is in 2D. But how to get to a path? Well, we have 2 variants: Pixel Most pictures store information as Pixels: each pixel on a grid has a color assigned to it. Scaling the picture does alter the grid size. These pictures are very hard to plot, unless you have your machine interpret each pixel of a given color as a specific movement operation. For example, each pixel of black color in a monochrome picture could be translated as a square-movement of a certain size, using the top-left corner of the square for the operation's reference. In G-code, drawing a line around the Pixel X=10 Y=10 with a grid size of 1 mm looks like this: G90 ; absolute mode! G1 X10 Y10 G1 X1 E1 G1 Y1 E1 G1 X-1 E1 G1 Y-1 E1 Vector proper 2D-Pathes are stored only in Vector graphics. If you can, Vector graphics can contain the exact path you want your machine to follow. A typical format is .svg. It contains already the start position of path and how to follow it. Going from Vector Graphic to G-code just needs you to add G1 before each part of the path instruction and E commands at the end to operate whatever tool you due - be it spinning the drill in a CNC, extruding filament in a printer, turning on a laser or pushing down the printhead in a plotter.
How to attach a metal bearing to a print
Ball bearings are usually fitted in one style, no matter what is the material that they are embedded in: press fit. Press fit To get a good press fit, the part will have to have a hole that is the diameter of the bearing (22 mm) plus a little margin that depends on your printer and filament. From my own experience, a design with 22.1 mm to 22.4 mm diameter resulted in a near-enough 22mm hole that gave decent fit. Your design will need to be adjusted depending on the material and resolution of the printer. Note that in the case of machined metal parts, the hole usually is not exactly 22mm but a coupe thau (=1/1000 inch) smaller as the bearings get pressed into the hole with a hydraulic press. They do deliberately deform the bearing and workpiece a tiny bit to sit perfectly. If you make the hole too much too small, the printed parts could break under the stress such treatment puts them under. However, if done just right the ring itself will deform just enough to fit the bearing's casing, as long as it is flexible enough. I have experienced prints of 2 wall thickness with 15-20% infill to allow a little bit of flex, which resulted in them applying quite some tension on a set of three screws: the Slider for 2040 Openbuild V-slot by FabianFriethjoph does use this effect from PLA to force the wheels into the guide rail just enough to prevent wobble. Since most filaments shrink, you might still need to use a larger-than 22 mm hole in design to get just a couple thau under the 22 mm you want for the perfect press fit. Adjustable position In some cases, ball bearings are fitted into larger holes, and then fastened and adjusted with a set of 3 setscrews - their seat can be changed slightly to compensate for warp or shear of the whole item. However, printed plastics are bad at holding a thread, and it would be a very good idea to include a metal insert with the thread. For example, you could include a nut in the middle of the ring holding the bearing, or you might use metal inserts. Capping Even if one uses a snug press fit or adjustable position, it can be a good idea to use a cap that makes sure the bearing can't fall out of its area without removing the cap first.
Weird bumps cylindrical hole
It looks like possibly a combination of too high of extruder temperature and poor retraction. First, try reducing your extruder temperature. PLA ideal extruder temps range from about 185C to 225C; depending on purity, quality, and climate. This can help prevent additional oozing and clogging. If your extruder clogs easily, you probably have too high of temperature. After you've verified you have correct extrusion temperature. Try finding/adjusting retraction settings in your preferred slicing engine. Here's a good troubleshoot page from Simplify3D's website.
Can the da Vinci Jr 1.0 print in 100 microns, if so how?
I will attempt to answer your question, as it stands. Dealing with the first part, according to the product specifications, the resolution, or layer thickness, is indeed 100 μm, when printing using the Fine setting. Resolution Fine 0.1 mm (100 microns) Standard 0.2 mm (200 microns) Speed 0.3 mm (300 microns) Ultra Fast 0.4 mm (400 microns) With respect to the second part of your question, how could I do this? You simply put the printer into Fine mode, and the resulting print will be printed with 100 μm thick layers. If this is not what you wanted to ask, then please clarify your question.
Boolean operation on two objects in Blender
Check your settings in the slicer software you use: if you look at the sliced print carefully, you see only one line in each layer that crosses the inner section. The lines are also yellow, not green. This strongly hints that these are movement commands, not actual print commands. On the other hand, you might want to carefully check in blender: at times, the normals in places get swapped inside out and then mess up the whole geometry without being visible in blender. Recalculate Normals can fix that at times, other times choose the messed up vertices and flip normals. Make sure not to include voids in the model. The model in question Looking at the model, I also spotted that there was a lingering solidify modifier. Applying that resulted in this: This is a particularly bad thing. Fixing is easy though: remove the offending inner vertices. Atop that, the center points are a clustered mess of vertices - surely you want to merge them into just two vertices. Applying the Boolean modifier now created a solid shell. Before exporting, all other items had to be removed (deleted), then the export gives this nice model:
Ender 3 ignores signal from optocoupler
Not knowing the type of inductive sensor you are using, the most common, an NPN type sensor (like the LJ18A3-8-Z/BX) is assumed (in relation to your previous question). NPN type sensors imply that the signal is held high at a certain voltage (the supply voltage ranges from 6 V-36 V, but are reported to work on 5 V also) and is actively switched down to 0 V when triggered. Basically the sensor always produces a high signal until triggered. Why is this the preferred option? If somehow the wires break or some issue occurs that triggers the sensor, movement is stopped to prevent damage to occur. The signal from the sensor needs to be "high" and the switch needs to cut the power by opening the circuit. So make sure what your sensor signal is outputting in the first place. The depicted switch is a powered switch as it uses an LED, but the switching component on the circuit board itself has three pins, COM (COMmon), NO (Normally Open) and NC (Normally Closed). You need to put +5 V on the white wire to power the right side of the optocoupler and connect the switch as such that the COM and the NC are connected (most probably S and U in the depicted switch).
How can I add an extra fan, controlled by a microcontroller, to my board?
The MKS Gen L v1.0 Board you are using does support microcontroller controlled fans without doing some surface level modification to the board via the D9/FAN. The port you marked FAN is not a controllable port, it runs a direct 12/24 V all the time and should be used for the Hotend cooling solution. The ports D7/HE1 and D10/HE0 are for two hotendes, corresponding to E0 and E1. Variant A: Swappy Fans This is the more tricky variant and does need both coding and wiring expertise. You'll have to run both hotend cooling fans via that one port in the top left corner. Make sure they are running fast enough to keep the heatsinks cool and prevent heat creep! Your custom Firmware will have to define D9 as a microcontroller controlled Fan instead of a 100 % running fan as the normal firmware is most likely. Without extra hardware, you can't get 2 individually controllable ports from D9, but you can use, the fact that you don't want part cooling for a hotends in 'resting' position. So a pair of couple Normally Closed switches cab achieve disabling of the resting hotend's part cooling fan: make a wire splitter for D9, so that you have both + and both --wires connect to the one +/--pin on the board. You'll have the part cooling fans in parallel now. Do the same for the Hotend Cooling Fans! connect each +-line to a Normally Closed switch, which is installed on the hotend in a way so it triggers and opens the line if the hotend is in the resting (homing) position. As the line connects when the hotend moves into the build volume, the part cooling fan on the currently active hotend starts to spin while the one of the non-active hotend is isolated. Variant B: MOSFETs and Safety An alternate source for the part cooling fan signals might be the SERVOS1/SERVOS2 group, where D4 to D6 and D11 are accessible. This leaves the FAN and top-left 12 V pinnings free for the hotend cooling. The downside is, that these pins don't likely provide 12 V but at best a 5 V digital output. However, a 0 to 5 V signal can be used to control a separate MOSFET which outputs 0 to 12 V, which then can power the part cooling fans. Due to the power draw of the Fans, a simple step-up converter is not a solution it needs a separate power supply. The Main benefit is, that this does draw less power from the board than Variant A and does not re-pin D9. The "Cooling Fan Board" could use a 6-line ribbon cable to connect to the SERVOS1 pins, using the 5V as reference for the MOSFETs, D4/D5 as the trigger signal and GND as return lines. A pre-assembled board that could serve in this position would be a L298N Driver. Due to how it is set up, one could run both part cooling fans, if their speed is set up to be always equal.
Threaded rods to create frame/axis connection. Which improvements can be made and are they needed?
If I understand you correctly, compared to a Mendel RepRap you are using: M8 threaded rod (the same kind of rod used in the Mendel RepRap frame) roughly the same lengths of rod as in the Mendel, and cross-braced with more diagonals than the Mendel design. So I expect less vibration and the same print quality as a Mendel. Rather than put one block of wood at each corner with holes drilled at a bunch of weird skewed angles, the "1X2 split vertex" looks like it is a lot easier to construct. I've heard several people claim that lots of threaded rods and associated corner connectors can be replaced with a few big sheets of wood in a 3D printer. See Mendel90, RP9, SGBot, WolfStrap, etc. Looks like a very educational project. Good luck.
Cleaning IPA with the help of Mercury wash-and-cure?
Based on the frequencies of most UV cure resins, your suggestion has merit. Other factors come into consideration, however. These illumination devices have a limited life span. Running the UV diodes for the purpose of curing out the resin from the IPA will "use up" the portion of time otherwise useful for curing models. Additionally, the UV light which would otherwise be "applied" to the surface of a printed model now has to pass through the IPA. While the IPA is perfectly transparent to the 405 nm used to cure resins, there could be attenuation and refraction by impurities in the liquid. Sunlight is mostly free, broad-spectrum, and (on a sunny day) far more powerful than most affordable UV illumination systems. In a pinch, sure, use the curing feature, but the sun is your cheap friend.
How can I determine the current value of a #defined variable?
"#define" is a feature of the compiler preprocessor and isn't a feature of Marlin. So there is no general way to recover the value of a "#define variable" (which isn't actually a variable at all) unless Marlin explicitly provides the option. In the current version of Marlin M851 will report the X and Y offsets. It appears you have an older version which does not do this. In older versions there appears to be no option to recover the value.
Do the TW, THW and THHN or THWN wire insulation types matter in terms of powering RAMPS 1.4 or the MK2a Heat Bed?
THHN wire is thermoplastic high heat-resistant nylon coated wire. THWN is thermoplastic heat- and moisture-resistant nylon coated wire. "T" stands for thermoplastic insulation covering the wire itself. "H" stands for a heat resistance of the insulation max 167°F. "HH" stands for a heat resistance, but increased max 194°F. "W" is for moisture resistant. "N" is for a nylon coating make the insulation oil and gas resistant. In my opinion the Wire Storehouse is good for simple stuff, but I would not use it for something I consider important. It's quality is poor on the insulation rating and the number of strands is low. Higher strands number allows for more flexible wire. If you get high end audiophile type speaker wire it could be considered as you can find high strand number with good quality insulation properties in heavier gauges. Or your local auto parts store will carry 8 and 6 gauge wire with better insulation properties.
I want to use my 2 extruders simultaneously
To print with 2 extruders simultaneously you need a firmware that supports that. Luckily, there is a firmware called Sailfish that is able to do that. The feature you are looking for is called Ditto printing. Sailfish firmware is found here
My anet a2 auto-homes incorrectly
Your limit switches are not working properly - they should always hit. Do the following steps: Move axis in all possible directions, both positive and negative; Check limit switch wiring; Limit switch output.
Motor driver chip install direction?
From A4988 Stepper Motor Driver Carrier, the rear of the breakout board, is identical to yours: Note the two square pads for the GND, whereas the others are round. Now looking at the top side: and note the position of the square GND pins/pads, in relation to the trim pot. Now look at this hi-res photo of a populated MKS board Again, looking at the position of the trim pots, one can see that the A4988 breakout boards need to be oriented such that the side with GND pins need to be nearest to the top of the board. That is to say the GND on the corner of the breakout board, needs to be pointing North East, as it were. Here is a schematic of the MKS 1.4 as well, although it is not much use, from MKS Gen 1.4 circuit and pinouts:
Parameterizable customer object in Tinkercad
Yes, there is such a way in Tinkercad. It is called a shape generator and it is very well hidden. you can find it here: Open Tinkercad and select a model to Tinker or create a new one. select the "Basic shapes" pulldown on the right and choose the last option: "shape generators". choose "create shape generator" choose "new shape generator" and select a template to start from Here you have the javascript code to create a shape with parameters like basic shapes.
Best/Simplest/Easiest way to secure a lid
Don't know how big your parts are, but if repeated use is a concern and you need pressure that screws can deliver, consider screwing on some toggle clamps if you have the real estate. You could also make a 3d printed version of one that's sized to your needs. There are some models available.
Constant under extrusion and filament grinding
Grinding is due to attempts to advance filament faster than it can be melted and dispensed. Try one or more of the following: Raise the head temperature (to meet current throughput demand) Lower the print speed (to reduce throughput demand) Slice for thinner layers (to reduce throughput demand)
Printing temperatures for ABS on a Flashforge Adventurer 3
The most commonly used print temperature range for ABS is 220 to 240 °C with the major bulk around 230 °C. Some filaments are blended with inhibitors or PC, increasing their print temperature to up to 260 °C. Note that the color of the filament just as the brand can have an impact on the print temperature! The most commonly used bed temperature for ABS start at least at 80 °C. MatterHackers suggest 85-90 °C. If your bed is particularly bad at getting adhesion, you might want to clean the bed of residues and fingerprints and relevel the bed. If that is not enough and you use a glass bed, a slurry of ABS in Acetone could come in handy. If you have a glass bed, the slurry is pretty much the best option. Print cooling is a bane on ABS - the stuff shrinks too fast if cooled, resulting in the parts breaking loose!
Does moving the z-endstop upwards affect the maximum height of the printable object?
If you move up the end stop such that it raises the nozzle with respect to the build platform you lose height, so basically the answer is yes. But, as seen in your referenced question, your nozzle location is determined by the mechanical layout of the printer and the end stop had to be raised in order to print at all. This means that although you have less height to move the Z gantry, it can now actually print the full range the printer is designed for (the max Z to print is fixed in the configuration of the firmware of the printer and is always smaller than the maximum Z of the mechanical layout). Theoretically, if you ever make a lower profile hotend head, you would be able to lower the end stop and gain a little in height and adjust the firmware maximum Z height. E.g. in Marlin firmware, for an Anet A8 3D printer, #define Z_MAX_POS 240 in the Configuration.h file defines the maximum print height of 240 mm. If you would deliberately increase the Z end stop height and platform by let's say 50 mm, the printer thinks it still can print 240 mm, but in reality the gantry will crash against the top mounts and thus limit your printing height.
Test print coming out spongy
It turned out I had the wrong filament size set in Ultimaker Cura. Fixing this resolved the issue.
Slic3r top layer issues, small gaps, weird extruder paths
To have a very smooth finish on top layer, I usually act on these settings : in Print Settings : Layers & Perimeters : Horizontal shells : 3 / 3 Infill: Infill, Top/bottom fill patterns : Archimedean Chords ; Speed: .for print moves : Top solid infill : 20 (mm/s) Advanced: Extrusion width, Top solid infill : 0.2 (mm) = This gives very slow movement in a circular way, the small extrusion creates an ironing effect, thus very nice finish. Considering your slicer behavior, have you tried changing number of top shelves & Infill type ?
Printrun doesn't connect when 12 V is on
It sounds a bit like you are having (additional) grounding issues1. Are your MacBook and the RAMPS using the same ground, i.e. are they using the same mains circuit? If you are using the same power strip, then the next thing to check would be that the PSU on the printer correctly grounded (at the bottom of the unit). From David Crocker's superlative blog, see Upgrading the large delta printer - Power supply output grounding: Power supply output grounding While taking some measurements on my machine, I discovered that the negative side of the output of the 12V LED power supply I am using was not connected to ground inside the power supply as I expected. This presents a safety hazard. So I added an additional wire from ground to the spare negative output terminal of the power supply. 1 Why do I think this? Three reasons: Because grounding issues is one of the most common, and over-looked, problems, in circuit design; I have often had peripheral devices, that use a separate additional power supply, cause a PC laptop to go "haywire" (or worse, die) once connected via RS232/USB (especially charge sensitive devices on the laptop, such as the track pad), due to different, or floating, grounds, and; I had recently read the blog and made special note to check all of my power supplies as they are all terrible, cheap, Chinese knockoffs, and grounding circuits in Thailand are usually non-existant, or, at best, poorly wired up.
Marlin Adjusting feedrate
You can change the maximum allowable feedrate in Configuration.h, but the actual feedrate that is used isn't determined by your firmware. The feedrate is specified in the G-Code file. A command like G0 X10.0 Y15.0 Z3.0 F9000 indicates a move to (10,15,3) at a feedrate of 9000 mm/min. If F is not specified, the last used feedrate is used. You just have to provide the appropriate G-code commands with the feedrate you want in them. There's no reason to modify the firmware to get a different feedrate.
Limit to extrusion volume
The molten plastic in the extruder becomes a hydraulic fluid effectively when it gets melted. You're pushing on a fat piston (1.75 mm or 2.85 mm, depending on filament type), and shoving fluid out through a 0.4 mm or so hole. There's a limit to flow rate at a given pressure, but the bigger issue actually tends to be friction. Molten plastic really loves to grab on to metal, and the ratio of surface area to volume is fairly high in the long, skinny tube that is the inside of an extruder. To make matters worse, the not-quite-molten section of the melt zone up at the top normally doesn't make a lot of contact with the walls due to lower pressures not deforming the plastic all that much, but at higher pressures you get much more deformation, increasing the linear distance that the plastic is dragging against the tube walls, and the pressure with which the two surfaces are bonding together. Especially in cheapo clone extruders you'll find roughly bored inner surfaces with many circumferential grooves which exacerbate this issue - this is why most extruders have a PTFE lining as far down as they can go. I had this issue in my $3 "all-steel" extruder barrel, where even printing PLA was an issue because of how readily the plastic formed huge plugs and grabbed the inside of the extruder. So what you end up with, is that increased torque mostly linearly translates to increased pressure, which results in linearly increased friction inside the barrel, plus a little bit extra due to extra deformation in the top of the melt zone. You can polish the inside of the barrel (heatbreak? seen both terms) to help alleviate internal friction somewhat. To make things even more fun, there's obviously a limit with how much force you can exert through the mating surface of a single hobbed bolt and the side of the filament. Too much force and the teeth will simply rip off the side of the filament and then you'll have no feeding torque whatsoever. To get much higher torque you'd need to design an extruder that both supports the filament much better than modern designs do, and spreads the force out over a larger surface area, either by using a much larger diameter feed gear, or multiple tightly-coupled feed gears. I went into some degree of detail on the feed mechanism in this answer that another user asked about using a commercial extruder for plastic injection molding, which overlaps somewhat with your question here. I know the original question assumed perfect heat transfer that was not a limiting factor to the process, but how that actually works is relevant to the question as well. E3D took one approach with their Volcano design, simply by making the melt zone much longer to increase heat transfer; the downside is there's obviously substantially more friction when you've got 4x the linear distance of molten plastic against metal, assuming you're not using a PTFE liner. This does have the advantage of letting the plastic take its time to reach the target temperature, decreasing how far over your target plastic temperature you need to have the heating element. One thing not often discussed in 3d printers is the fact that the plastic asymptotically approaches the temperature registered on your thermistor. If you're printing very, very slowly, your plastic will nearly be exactly at the target temperature. If you print very quickly with very high volumes, you'll tend to have slightly cooler plastic than intended because it simply wasn't in contact with the heater long enough to come up to temperature. The solution for very small designs might be higher temperatures, but the drawback there is that if you slow down even for a moment, say moving to thinner line widths or picking up and moving the extruder, you'll overheat the plastic. So there's practicality questions that need to be answered to determine how you'll actually heat that much plastic to the right temperature. Increased distance improves reliability at the cost of increased friction (and therefore extruder torque required), and increased temperature mostly bypasses that question at the cost of reliability. TL;DR Increased extrusion speed requires increased pressure, which increases friction dramatically and in a non-linear fashion and results in stripped filament.
Internal wall does not print in horizontal print orientation
I think this is caused by the shape of the hole. The shape is parabolic or circular, this means that if you slice it as in the green part, the slicer determines the placing of the layers along the curvature. If it has a shallow curvature, and slicing layer height is relatively thick, the curvature of the object cannot be followed. But, if you have more than 1 top layer, this usually should not be visible. I don't think that you have a single layer, so this is a pretty odd anomaly that I have not seen yet (that you look at the infill without top layers). You could get past this by using a local different infill, e.g. 100 % infill. You can look at this answer of the question: "Different infill in the same part". This should help you out printing in your preferred orientation.
Extreme under extrusion Ender 3 Pro
I had a similar problem to you with my Ender-3 but now it is fine. There are so many causes of under-extrusion that I doubt I can tell you what is specifically wrong in your case but perhaps I can give you some pointers. In addition to what you have done, check if you can manually extrude the filament by releasing the grip on the filament (depress the lever on the feeder mechanism) and push the filament through with your hand (while the nozzle is heated to the correct temperature for your filament). If that works well without too much force then it suggests one of two things: an issue with the feeder mechanism (e.g. worn or clogged up teeth on cogs, spring too tight or too weak) or extrusion settings on your slicer need modification (e.g. your slicer made G-code with too frequent retractions and this causes the filament to wear down thin preventing the extruder feeder cogs from gripping it. A solution is to reduce the maximum number of retractions possible by altering your slicer settings - this was an important factor for getting my machine to work again). I found the following YouTube video helpful in giving me pointer of where to start - perhaps it will help you too:
Speed issue with Slic3r and Marlin
No, you did not set all the settings to the same speed, there are 2 different print speeds defined: Infill Solid: 60 mm/s First Layer Speed: 30% This means, that some walls will be printed 10 mm/s faster than the others, and that first layer should be printed at 30% of 50 mm/s, so at 15 mm/s - try to define it as a speed. Make sure to save and apply the settings and only then slice your model, as you might have sliced the model with the previous settings.
Ender 5: Bowden tube shifts in/out of extruder during retractions
If it's just the pressure fitting on the brass coupler that shifts in/out, or the PTFE tube shifting slightly in/out but remaining in the coupler, that shouldn't be a problem unless it's so loose it can come out entirely. The blue clips which should have come with the printer are intended to stop this motion or at least provide enough pressure to prevent it from falling all the way out. Regarding the small 0.25 - 0.5 mm of play, effectively it just means you lose that much length from your retractions, since part of the retraction goes into pulling the tube back into the coupler. When the retraction is reversed, the effective filament position should go back to what it was before the retraction. As long as your retraction amount is sufficient after the loss, it should not cause stringing. You probably need to look for another cause of your stringing.
alternative to Mic-6 bed plate
Most of the aluminium alloys are fine. When they say that a certain aluminium is not suitable to certain temperature range they usually mean "under stress"... your bed has no stress at all, it's just staying there with basically no weight on top of it. Also, you don't need the single micron accuracy either... Just pick a "cast" and milled aluminium and not a rolled one. If you can choose among different ones, pick the one with the highest thermal conductivity, and that's it. For example, I can easily find milled plates out of 5083 or 7021. 7021 has a better thermal conductivity, which is good to have a more uniform temperature.
Why are my lowest layers not solid?
I printed the thing for some layers to see what the printer actually does: There are clearly too many retractions and unretractions. This can be seen in advance by letting Slic3r show the retractions and unretractions. For the green "walls", it became clear that it prints them exactly onto the empty space, so in fact the seem to be floating. That made it obvious to me: the normals were pointing into the wrong direction. Therefore, Slic3r seems to have interpreted the material side of the green parts inside out. I had the same issue on some other parts as well. I went to Blender, selected the object(s), chose edit mode and found a function called "Recalculate normals". Since then, the bottom layer is solid. Also printing time is reduced by half an hour.
Anycubic Kossel Plus raises the Printhead around the corners of the bed too High if the print is too close to the corners
It is a common problem with "delta"-style circular parallel kinematics machines. It is called Bowling. It can lead to the presumed Z=0 plane having a bowl-like shape. The actual error shape can be more complex. The job of "bed-leveling" is to make the realized z=0 plane to be identical with the bed. If you can, use a multi-point (like 40+ points) interpolation. It builds an error map, and adjusts every point based on that map.
Printing multiple materials with different properties on the same device
Yes and no. for instance simultanious printing of plas plastic and lets say metal. Is such a printer available or in development ? Practically speaking, no. Metal printing requires significantly higher temperatures than plastic, and the two processes are so incompatible that there is currently no good solutions that would allow one printer to print both in the same print. Whether extruding filament, laser sintering, or curing resins, the materials involved have to be fairly similar in processing environment to print adjacent to each other without issue. There are many printers that are intended to print multiple materials by changing the print head. You might, for instance, use a ceramic paste extruder, then change the head for the next print using plastic. There have been efforts in the past, and some efforts are ongoing, to resolve this. For instance wood's metal, a low temperature alloy, can be poured at temperatures compatible with plastics, so it's possible to create a printer that prints plastic, leaving troughs or voids in the plastic, then the same printer during this print would pour molten woods metal into these areas, which then solidifies into an internal metal structure. These are intended for circuitry and electrical use, however significant problems still exist because the thermal expansion differences in these materials lead to stress and result in poor reliability. So while some of these processes are being developed, this is still just in the experimental stage and there are significant problems to overcome before printers can print widely different materials in a single printing session. Of course you can find plastics with such a wide range of characteristics that they can be seen as printing different materials. Plastics imbued with wood fibers, printing next to conductive plastics with graphite, printing next to flexible plastics, etc, etc are now possible, and depending on your requirements they may meet your needs.
Is 22-Guage Stranded Hookup Wire the correct wire to connect the Switching Powersupply to RAMPs 1.4?
22awg wiring is good for a max of 7A in this usage case. Your power supply can provide 30A. So it is definitely not large enough wire gauge for good wiring practice -- in the event of a short, you want the PSU's over-current protection to kick in before the wiring overheats. That would mean 14ga between the PSU and board. 16ga would probably cover your actual load requirements just fine, but we need to know a lot more about your printer to say that for sure. 12v systems need heavy duty wiring, at least on the main supply lines. You can use 22ga for individual power consumers, such as fans, extruder heaters, etc. (No heatbeds.)
Alunar m508 Firmware
The Alunar firmware you linked is a fork from the main Marlin firmware. If the bed Y direction is reversed, usually the stepper is incorrectly placed (mirrored) this is seen frequently for the Anet A8 printer which is very similar to your printer. In your case the X direction is wrong, this is usually related to the wiring of the stepper, reversing the connector by 180 degrees should do the trick (hardware solution). As a software solution, changing direction is not difficult in Marlin based firmware; you just want to invert the stepper direction; the following section in the configuration.h file does that for you: // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. #define INVERT_X_DIR false #define INVERT_Y_DIR false #define INVERT_Z_DIR true Just change INVERT_X_DIR to true. If your home position is still not working for you, you should look into this section of the same configuration file: // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS -33 #define Y_MIN_POS -10 #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE #define Y_MAX_POS Y_BED_SIZE #define Z_MAX_POS 240 Change the MIN_POS positions as such that it starts at the corner of the bed. A more in depth bed center calibration tutorial can be found here. P.S. Please do not print anti-wobble caps for the Z-axis rods (as mentioned in another answer), these are not reducing the wobble, in fact they cause problems. What happens if you constrain the top is that you get a statically indeterminate construction; forces and displacements are not predictable! Better solutions to eliminate Z-wobble are lifting devices that decouple X/Y movement from the threaded rod (eccentricity of the threaded rod) from the Z movement. Also fixate the threaded rod above the springy stepper-to-threaded-rod coupler.
Gnarly filament: just one of those things, or grounds for complaint?
Sorry to say it, but MOST wrap-unders are caused by end-users releasing the free end of the filament when handling the spool. It is mathematically impossible to introduce a knot during initial spooling, and all the reputable filament vendors these days have pretty careful free-end control when the spool is taken off the spooler and sent to packaging. Where you may get knots straight from the filament vendor is if they're respooling very carelessly and let go of the free end. You should only see this with very cheap filament. So, it's possible that your vendor messed up, but you should probably rule out your own handling practices first. It's not hard to prevent losing the free end. The nicer spool styles these days have holes on the side-flanges for securing the free end during handling/storage. Or you can print one of many, many filament clip designs from Thingiverse or your favorite model site. If you're very careful with handling and still get knots, switch suppliers. Anyone sloppy enough to repeatedly mis-handle new spools is likely also using extremely cheap material, and there have been a lot of anecdotal reports of very nasty industrial chemicals being mixed into the colorants of low-cost filament.
3DTouch sensor fails after probe deployment and triggering
After troubleshooting I have managed to fix the sensor problems. (Please take note of the update at the end of the answer below as the problem started again shortly after the so-called fix...) Digging into several posts I found this post that hints to a solution: After readjusting, the sensor worked and I was able to produce a print, but the next day it failed again... What I found is that the bed and extruder are NOT shut off while probing although that should have been enabled in Marlin 1.1.8. I assumed that this de-powering is only during the actual probe lowering, so very short. So I figured that this might be an EMI problem. In a last resort I updated to Marlin 1.1.9 which has the functionality to shut the power off for heater and bed and everything now seems to work perfectly. I now see that the de-powering is a bit longer and in fact the extruder temperature drops slightly, this has never been seen with the previous firmware version. Update: Not long after the "update"/"fix" the problem manifested itself again... Further troubleshooting revealed that it was a bad connection of the connectors of the sensor that got temporarily "fixed" as the cables had been fiddled with during the firmware update.
Ender 3 Calibration Cube Fail + Can't Print Circles
First, check that the calibration part you have is actually a cube. Maybe you downloaded a trick 'calibration cube' model. Cura will show he overall dimensions of any model which it is slicing. Ignore any print quality issues first off. A hollow calibration cube is mainly used to check the X/Y/Z motion and so long as you print at a sensible (slow) speed), the other parameters shouldn't have much effect (so long as the first layer is OK, and you get within 30% of the right extrusion). If the calibration cube is within +/- 0.5mm on each side, it's probably good. Under/over extrusion, caliper technique, etc, can explain this sort of variation, and you might want to use a bigger test part like this star on my thingiverse account once you think you're close. The 'steps per mm' setting is determined within the firmware, it is part of how your printer consumes G-code. For a delta printer, for example, there is some fancy maths to combine X/Y/Z into the motor movements. This means that you can't change steps/mm in Cura, you need to either change the firmware defaults and 'reset to factory settings', or modify the parameters in EEPROM by sending G-code. Seeing too small a calibration part (for a Cartesian printer) can easily be explained by problems in the printer's motion system: Stepper missing steps due to jerk or acceleration too high Stepper missing steps due to binding/friction in the bearings (Send M84 to idle the stepper motor, and move X by hand) Teeth missing on the drive belt (may show up on a diagonal 'bar' print) Loose drive pinion (maybe backlash on the flat on the spindle means the problem is greater on small parts) - see below Flex in the drive mechanism (e.g. belt mount to traveller is loose) An annoying feature of a lot of these problems is that for any particular repetitive sequence of steps, you might see a very consistent result. Even thought to problem is something being badly adjusted, it gives the impression that the problem is calibration. The drive wheel is held in place with a grub screw, see this diagram from the Anet-A8 assembly diagram.
What's the advantage to deploy 3D printing on IaaS
Most cloud models are based on virtual rather than physical services. The closest thing I can think of as "IAAS" in the 3D printing space would be something like 3DHubs which connects people that have printer capacity with people that want to print. The whole cloud 3D printing thing seem a bit questionable to how large/viable of a market it really is. I know there are a LOT of people out there that want to make money off of (or at least defer the cost of) the printer they bought; but, the market seems over-saturated. Heck, even UPS does it. All the people that I know that use contract printing already have their own printer but contract out either for more volume, or a different material than they can print with their printer. At work we have a printer; but, we go outside if we want volume (hundreds of pieces) but are not yet ready to commit to a mold. When we go outside, we would only consider a trusted vetted supplier - not the cloud.
Wiring BLTouch V3.1 on Anet A6 and the JST connector polarity
Black is GND and should not be connected to VCC. Note that you can simply pop out the metal parts (use a pin to press a small clip) from the connector and rearrange how you want them to be. Note that most printer controller boards have the GND of all the endstops connected, so technically you don't need the black wire at all. I make my own extension cables (from 4 wire cable) where the brown and black are connected at the sensor side and a single white wire is used for the Z-min endstop.
Anycubic Chiron does not print correctly
It is impossible to give a definitive answer without photographic evidence, since your description of the problem does not give enough information. The most common causes of "circular objects not printing correctly" are loose belts and loose grub screws on the belt drive pulleys. However, you should note that the printer's firmware will not allow the print head to be moved outside the defined maximum printing area under software (g-code) control. This will cause large objects to be truncated if they extend outside of the defined maximum printing area, and I suspect that this is what is happening.
Ender 3 V2 Extruder getting hot
You could still get heat creep with a Bowden tube. It has different characteristics. Instead of jamming up in the direct drive, the filament can melt too far upwards into the heat break where it can refreeze and jam. The characteristic, if you can pull out the filament, is widened filament extending into the heat break. See Air printing/jamming midway through raft creation and What are ways to avoid heat creep? Adding fans to an enclosure improves the temperature control in the enclosure.
Filament Guides Drag
For an easy test, try manually pulling the filament through the U-loop of guide tube. How hard is it to pull through? It should only take 1-2 lbs of tension at most. Then do a "tug test" on the extruder. Start it loading and grab the filament by hand to try to stop it from extruding. The Replicator 1/2/2x extruder style can typically pull ~8-10 lbs of tension and it should be fairly difficult to stop the filament. When you do stop the filament, you should hear clicking/thumping from the stepper stalling, NOT quiet grinding as the drive gear chews through the filament. If the grip slips rather than stalls, your extruder hardware needs to be tuned or replaced. There are three common causes of excessive feed tube drag: Use of polyethylene tubing instead of PTFE -- this makes a shockingly large difference in drag friction. You can use a heat gun or torch (outside!!) to tell the difference between PE and PTFE. PE will soften quickly and then melt fairly easily, whereas PTFE will simply go clear and eventually char without melting. Nylon is also sometimes used for feed tubes with acceptable results, but if you have any suspicion about the tube material, just buy new PTFE tubes from a reputable vendor like McMaster. Too many loops/curves in the tube. Total drag friction is an exponential function of the total amount of curvature in the tube. You should have one good U-loop, no spirals or floppy zig-zags. Excessive friction on the spool rotation. Any spool back-tension gets greatly magnified through the feed tube per the capstan equation. This can be caused by a bad spool holder, or if the filament is knotted on the spool due to letting the end of the spool loose during handling.
Should I comment out the code for what I am not testing when loading the test firmware for Ramps 1.4?
There's no reason to comment anything out. It will work just fine without any modification, even if you're just testing a single motor. That said, I don't see the value of this "test firmware" over just installing Marlin.
How to achieve dimensional accuracy of printed parts
Unfortunately, different firmwares and different slicers require different calibration techniques! There's a lot of software-specific advice out there, like printing a single-wall calibration box and measuring the wall thickness. That's a good technique for Slic3r, but not for Simplify3D. It can be very confusing. Here's the general outline of what you should do: Rough calibration check for printer steps/mm. Do the values in your firmware settings make sense for your linear motion hardware? For example, you can calculate what the theoretical values SHOULD be based on belt pitch and pulley tooth count. Print something moderately big (~100-200mm) and check if it's +/-1-2%. If it's off by more than that, your steps/mm is probably wrong. Check for mechanical backlash using a backlash-checking print like this one: http://www.thingiverse.com/thing:252490 Tighten belts and perform other printer-specific tuning required to eliminate backlash. Backlash will throw off other calibration steps, so make sure there's no slop! Follow the recommended extrusion volume calibration steps for your slicer. This starts with measuring your filament diameter with calipers and inputting that into your slicer. And then you will usually either "print a single-walled box and measure the thickness" or "print a series of 100% infill calibration boxes and adjust the extrusion multiplier to the largest value that looks good without bulging." By measuring filament diameter and then adjusting an extrusion calibration setting in the slicer, you will be able to measure future filament and prints will come out right. Giving the slicer fake diameter values will force you to recalibrate every time the diameter changes. Note that you must redo this calibration for each FILAMENT MATERIAL and EXTRUDER DESIGN. Different material/extruder pairs will have different bite depths and effective drive diameter. Precision calibration check by printing a variety of object sizes and PLOTTING "desired size" as X and "actual size" as Y. Then find a linear fit equation, y=mx+b. (Do this separately for your printer's X, Y, and Z axes.) The value "m" is your scale error. You can use your slicer object scaling to fix this. For example, ABS usually requires 100.3-101% scaling to account for shrinkage. If you have scale error with a low-shrinkage material like PLA, you can adjust your firmware's steps/mm value to compensate. The value "b" is your fixed width error. Assuming you don't have backlash, this is usually caused by the small amount that molten plastic bulges out to the sides, or by extrusion volume calibration error. You can improve this by fine-tuning your extrusion volume. Many slicers also have "horizontal/XY size compensation" settings that you can use to shrink/expand the part by b/2 to correct the fixed width error. Any residual fixed-width error that you cannot correct with slicer settings should be added as a tolerance in your part models. If you follow these steps, you should get +/-0.1mm or better dimensional precision on your prints.* *Deltas not included. That's a whole other ball of wax.
Printer goes beyond the bed when auto leveling
I don't know how your firmware load handles G29 ,but here's a guess, based on information at the reprap wiki . Try using FBLR to force the travel limits. Parameters P Set the size of the grid that will be probed (P x P points). Not supported by non-linear delta printer bed leveling. Example: G29 P4 S Set the XY travel speed between probe points (in units/min) D Dry-Run mode. Just evaluate the bed Topology - Don't apply or clean the rotation Matrix. Useful to check the topology after a first run of G29. V Set the verbose level (0-4). Example: G29 V3 T Generate a Bed Topology Report. Example: G29 P5 T for a detailed report. This is useful for manual bed leveling and finding flaws in the bed (to assist with part placement). Not supported by non-linear delta printer bed leveling. F Set the Front limit of the probing grid B Set the Back limit of the probing grid. L Set the Left limit of the probing grid R Set the Right limit of the probing grid
Recommended settings for ColorFabb Copperfill Filaments on a 0.25 mm Nozzle?
It looks like a problem with feeding filament. It could be good to know if you did try such big printouts before but even if - from your picture it looks like on far end there is too less filament but on near end it's too much of it (because of 110%). And near the big circle it looks better even on far end. And there are "waves" close to big circle. How is that possible? Assuming that your extruder works well it might be caused by bending bowden tube. If your filament is not slick enough - in some settings (positions/arrangements) of bowden it might create enough friction so it doesn't flow with proper rate. It might be also caused if your bowden tube was bent too much (broken). To be sure please try to print 4 smaller (5 cm in diam) circles on bed's corners and the one in the center. Just one layer of course. How to fix the issue? In my opinion you could try to slow down whole printout. Try to print such big circle with 30% of regular speed. I'm pretty sure you'll get proper results. Try to check if filament goes smoothly thought the tube. Check if it has proper inner diameter. You can try to clean up a tube inside if it's not perfect clean or change a tube to new one. I know it was probably ok for recent filaments but maybe this one is more "demanding" ;)
Is it possible to use an aftermarket controller on a MakerBot?
You can put pretty much any controller in pretty much any printer, with a few noteworthy details you need to keep in mind for a Replicator 1. Makerbots use thermocouples. Most RepRap style 3d printers use thermistors. So you would need to replace the extruder temp sensors, or choose a new controller with thermocouple support. Makerbots use 24v heaters and fans and PSUs. Most RepRap style 3d printers run on 12v (although this is slowly changing because 24v is better for performance and safety.) You can either pick a new controller that is known to be compatible with 24v, or replace all 24v-rated components with equivalent 12v-rated components. The existing heatbed thermistor circuit is probably not the same kind of circuit that your new controller will expect. Older Makerbots use a small voltage divider circuit on the HBP PCB to convert the thermistor resistance to a voltage signal, whereas RepRap style controllers typically have this circuit on the mainboard and thus need only a simple thermistor hookup. You could add a new thermistor, or modify the existing circuit, or get an entirely new heatbed. The existing endstops are full +5v,GND,Signal style mechanical switches with debounce capacitors and LED indicators. These should be compatible with most controller boards given proper firmware setting, but you may need to do some creative wiring if there isn't a suitable three-pin endstop port on your chosen board. The LCD and 5-button panel will not work with other boards. You'll need to replace that or just run a remote host via USB. Connectors may be different, of course. That's always an issue with any board swap. You will need to export RepRap style gcode instead of .x3g files. Makerware/Desktop can export gcode but there may be some minor differences in Mcode assignments from what most RepRap style firmware will expect. I couldn't tell you offhand whether this will work, but to be safe, it would probably be best to use a more traditional RepRap slicer (Slic3r, Cura) or Simplify3D. So that's a healthy to-do list. At a certain point you're practically building a new printer. But there is a significantly easier approach than installing a RepRap style controller: replace the dead Makerbot Mightyboard with a compatible community-designed Sailfish board like the Azteeg x3 by Panucatt or new CloneBoard Mini by Carl Raffle. Or, if you're ok with Chinese sourcing, a FlashForge Mightyboard will be a near 100% drop-fit replacement for your Makerbot Mightyboard. Any of these options will give you fresh new electronics with minimal hardware changes in the rest of the printer. Either way is fine and you'll end up with a working printer. Using another Sailfish board will certainly be easier, if you don't object to staying within the Sailfish/x3g toolchain and Makerbot/Clone parts ecosystem. Makerbot does have a very bad community reputation these days, but it's important to remember that the Replicator 1 Dual is a completely open-source machine from the "pre-evil" days, and compatible spare parts are widely available from literally dozens of vendors. The Rep1-derived Makerbots and Clones collectively comprise the most popular single "flavor" of 3d printer in the world (totaling as much as perhaps a quarter of all consumer/hobbyist 3d printers sold to date) and many/most of the spare parts for Replicator 2/2x's and clones will also fit in a genuine Rep1.
Filament material for chemical application
There are two issues you have here, one is temperature stability and the other is chemical reactivity of plastics. I can't help you with the chemistry side, but I can help with the temperature. Application 1 (Temp < 40 °C) Any FDM plastic will perform reasonably well under these temperatures. I would suggest trying a Nylon, PETG or a PolyCarbonate filament as I know these are more resistant to acids than PLA or ABS. As far as strength of the parts, all FDM plastics will work well Application 2 (Temp > 180 °C) This temperature range is above the glass transition temperature of the PLA, ABS, PETG and Nylon are all well below 180 °C and therefore aren't worth considering. Your best option is PolyCarbonate, or PolyCarbonate-ABS which are both fairly high (roughly 140-150 °C). However, are both below your minimum temperature threshold. My conclusion is to try a polycarbonate sample and see how it reacts to the chemicals you're working with, though it doesn't look hopeful. For Chemical reactivity, I did some Google-fu and found a few links that look helpful for PolyCarbonate: Chemical resistance polycarbonate Polycarbonate Chemical Compatibility Chart
Ender 3 cracking magnetic bed
My personal technique for removing prints (particularly larger prints) is not to flex the mat at all. Instead, I wait until it's cool and then work the spatula under an edge and move it under the model to basically peel it from the mat. Smaller prints usually pop right off if I start with this technique from one end. Surface area on the bed (for a single part) is most important to how much work is involved. For example, a raft or brim will greatly increase the surface area. The spatula is long enough that usually I can reach everywhere under the model so eventually it will pop free. I might have to work around the model a bit before it reaches this point.
Progressively worse relative size error at smaller absolute sizes
You should not look at the relative dimensional differences, you should be looking at the absolute differences. Multiplying the undersized dimensions in percentage with the cylinder diameter gives you a value of 0.4  mm for each cylinder give or take a few hundreds. So, basically your printer works very consistent it is just suffering from a systematic offset. Basically, the printing process needs to adjust the X-Y dimensions to compensate for plastic flow effects. An option or setting in Ultimaker Cura to counteract this is called Horizontal Expansion. Slic3r and Simplify3d have similar settings. In Slic3r it is called XY size compensation.
Ender 3 displaying wrong temperatures for hotend and bed
I got my printer fixed and am posting steps I took for people with similar problems in the future. Initial problem: After I replaced my entire heating unit and reconnected the wires, my printer started to read about 135/185 °C for the nozzle and bed at room temperature. It gives the "Heating failed, printer halted, please reset" error when I tried to heat the hot end and bed. Troubleshooting steps: Checked the resistance of the thermistors. Both the hot end and bed were about 100k. Reflashed Marlin with different thermistor settings. Only the static (dummy) ones worked (reading a static value of 25/100 °C). All the other settings were giving very high readings at room temperature. Replaced the mainboard. This fixed the bed reading but hot end was still not working. Checked the hot end thermistor again at this point and couldn't get any values, which suggests the thermistor wire was broken somewhere. Replaced the hot end thermistor and that fixed all the issues. So what I think happened was that I messed up the board when I was reconnecting the heating unit. Then at some point after I first measured the thermistor resistance, the hot end thermistor broke. Replaced the thermistor and that solved the issue.
Prusa XI3 Extruder Calibration
It is really strange that although you increased the steps per mm, the amount extruded was less. I can think of two possible explanations: You are extruding too quickly, at a rate at which the extruder can't keep up melting the filament fast enough, causing the filament to slip or the extruder to miss steps: try lowering the feedrate (a feedrate like 100mm/min is typical for 1.75mm filament) and make sure that the temperature is appropriate to your filament. You are in absolute coordinate mode, and when you try to extrude 100mm it actually extrudes a different amount (based on the previous "position" of the extruder). Enter relative coordinate mode using G91.
Extruder spins for a few seconds after layer changes
Doing some googling, it looks like the BEFORE_LAYER_CHANGE comment in the G-code and stuff that follow come from the before_layer_gcode setting in your PrusaSlicer profile. Somehow, G92 E0.0 got in there. Remove it and the problem should go away.
How to tell machine how far travel limits without switches
Since 3D printers works with coodinates and the gcode generator requires the origin point and bed shape and bed size. knowing this your programs never will be out of the printing area. My printer has a printing area of 16.5 x 16.5 cm, so I set this parameter to CURA, Slic3r and 3dsimplify and I can't generate the gcode if the part does not fit on the bed. So I print parts with 15cm maximum Also the firmware has this limits to 16cm, the 0.5 cm is just for safety Of course if I send a command with pronterface or any other gbrl controler I can go over the limits due the X0Y0 could be out of position (offset), but if you respect the origin point and don't try to go over the limits by yourself the machine will be ok.
Why are fast printed lines thinner?
In your case, since linear advance makes the issue disappear, the reason of the thinner lines is the same as explained in the link you provided: The section (2) simply is very long because you probably have a Bowden setup which takes more than the length of the middle section to recover. However it does recover, see the first line (k=0) in the first image. At higher (constant) speed the flowrate decreases further due to pressure in the nozzle causing a reduced supply of filament, but this effect cannot be corrected by linear advance because linear advance assumes a linear relationship between pressure in the nozzle and extrusion.
How to remove internal part of a hex grid
I ended up finding a reasonable solution myself: Basically, I diffed two identical, non-hollow geometries, in which the first one had the cells larger than they needed to be (so overlapping with others), and the second one had them exactly of the right dimension: difference() { base_geometry(range, angle, infill, extra_padding = 2); base_geometry(range, angle, infill, extra_padding = 0); } This way the only portion of the solid remaining was the extra_padding on the outer edges of the geometry.
What is causing these strings in the overhangs?
While this looks a lot like stringing, it's not what I would call stringing. I usually reserve that term for material that should never have left the nozzle to begin with, due to insufficient or missing retraction or excessive compression of the filament between the extruder and the nozzle. The "strings" you've shown look like desired wall extrusions that did not adhere to the adjacent walls in the same layer or to the previous layer. This is common when printing concave perimeters that are overhanging, due to a combination of minimal-to-no contact with previous layer and acceleration of the nozzle away from the previous wall in the current layer. Sometimes under-extrusion can also be a factor. You can often mitigate this by: using thinner layers (for the whole print, or "adaptive layer height" that will dynamically adjust as needed). For a given wall slope (fixed rise over run), this will reduce the "rise", and thereby place the walls of the next layer such that they overlap more with the previous layer. Sometimes this makes the difference as to whether they overlap at all. increasing hotend temperature. This will improve bonding with adjacent wall and with previous layer, if there's any contact with it. decreasing print speed, especially for outer walls. This will reduce the effect of the nozzle pulling the wall away from the adjacent wall it's supposed to bond to, and will also deliver more heat to the adjacent wall and previous layer wall you want to bond to. All three of these will also help if under-extrusion is part of the underlying cause. If you can't get any of this to work, using supports is always an option, but spherical (as opposed to flattened) domes generally "shouldn't" need support to print.
Anet A8 extruder is clicking and not extruding
There are a number of unanswered questions which may serve as a guideline to narrow down a solution. Instead of attempting a new print, consider to remove the filament again. Shine a light from below and look into the barrel of the extruder to determine if you can see light. If this is mechanically impractical, move to next option. Manually feed the filament into the extruder. Use the panel to advance the filament rather than creating a print. Does the filament feed properly? If yes, the problem is not in the extruder system, nor the heat block or hot end. You said you re-leveled the bed. Double check that the nozzle is not being blocked by the bed, preventing filament from extruding. If the filament does not feed properly, you may not have completely cleared the heat break, hot end, or nozzle. If you can get or have nylon filament in the correct size, perform a nylon cleaning operation. This involves removing the existing filament, raising the nozzle temperature to 240°C while pushing nylon through. You have to be able to manually force the filament through until you see only clean nylon from the nozzle. I have had to push nylon in at the correct temperature, then pull it back out without any extrusion due to the depth of the blockage. After you've pushed as much as you can to get clean nylon (or none), cool the hot end to descend below 140°C. After a moment or two, set the temperature to 140°C and forcibly remove the filament from the upper portion of your assembly. It may require pliers and substantial force to get this out. Repeat the heating, extrusion (or attempts), removal until you get clean nylon from the nozzle and clean nylon at the tip of the removed filament. Only just today, I had to clear my nozzle using this method, but I was unable to get a reasonable extrusion of clean nylon. I have a 0.4 mm nozzle drill and applied that to the tip of the nozzle, carefully. I found a burned on segment by this additional step and succeeding nylon cleanings went well and my nozzle is printing cleanly again. If you don't have nylon, you can perform similar cleanings (called cold pulls) with ABS or PLA.
Issue with 3D printer making super thin layers
You need to level you bed. Thin prints happen when the extruder is too low and is printing too close to the bed. Download the following test codes from this address: https://www.chepclub.com/bed-level.html 1) The first code is the most important you will want to run moves the extruder to five points on your board - Front Left and Right, Back Left and Right, and Center. Using a folded piece of paper - I use a business card - drag the paper under extruder of each of the four corners. You want to make sure you get a bit of drag when pulling out the paper/card. If you feel have enough of a gap that you can run put the paper/card under the extruder and that you feel a bit of tug when pulling it out. It runs the middle last - if you are having issue with the drag, adjust all four corners slowly until it is right. 2) The second runs the extruder in a square pattern on your board. You simply want to run your finger of the print - if it sticks to the bed, you are good - if it doesn't, adjust your corners up and keep testing.
Interesting project for a child
As @fred_dot_u mentioned above, keychains are a simple, personalized item to make. In terms of interesting projects, things that I found intriguing when I first encountered 3D printing were objects that could not be made by other means, such as those "geared bearings" (Google: geared bearings 3d print). Given the popularity of figet spinners a while back, they could be an interesting item. A captive ball in a box, or three joined rings, can also be set up as a 3D print, and could have the same effect, while being easier for the kids to design. EDIT: Some links to versions of items along the above lines. Thingiverse tends to slowly break links, though, so these might not last: Geared Bearing Captive Ball Three Rings Triple Gear Self-aligning Bushing Keychain
Creality CR-10 problems with extrusion while printing
Clearly you're having an extrusion problem. Extrusion problems usually come either from a clogged nozzle (as @Adam S. said) or from the extruder it self. To determine where the problem is located I would first do a flow rate test using this. When doing this test you can determine if the extruder is grinding the filament or if it's not grabbing it too much. After the calibration of the flowrate you can be certain that the printer is (by .gcode) pushing the correct amount of filament. If the problem persist I would first do an unclogging (since it's cheaper than the following option) using something like this. If both previous options do not solve the problem, I would highly recommend you to by a mk-8 like metal extruder. After a while, the plastic one that comes with the printer loses force and you'll lose steps. Personally, I had a similar problem where the first layer was printed in a droplet pattern and was solved by changing the extruder to a metal one. Try these options and if the problem persist you could upload some pictures of the first layer or a video. Other possibilities I think of are that the filament is having trouble passing through the Bowden tube or maybe you'll have to reasemble the hotend.
What do I need to go along with my new SLA 3D printer?
Safety Gear Gloves, you want to wear them whenever handling any resin. Single-use gloves are best - dispose of them after use. Consider them contaminated after touching anything in contact with resin and toss them before handling anything that shall not get in contact with resin. That includes door handles. A good idea is to also wear eye protection, as resin in the eyes could destroy them. While a dust mask might not be strictly necessary, it could reduce your exposure to the fumes of resin. Some resin fumes are known to create hypersensitivity. It is also a good idea to put the printer into a dedicated workspace that is well ventilated and not your primary living space. I strongly recommend reading both Best way to deal with Resin Printers in your living space and Safe way of disposing resin Post-Processing Station You may want to build a post-processing station. Most pieces can be sourced in any home depot store or made from household items, so I don't recommend specific brands but the requirements. Washing Station A typical post-processing station consists of at least 2 vats large enough to submerge your print volume in, so you can wash off your print in the first and then wash it with fresh liquid in the second. The typical liquids for cleaning are isopropyl alcohol and sometimes technical alcohol. Some resins demand special liquids that are specific to the type of resin. Best, the washing vats have securely sealing lids. Glass is preferably as it is easy to clean. To use the least amount of cleaning liquid, you might want to have a pair of needle spray bottles - one for each bath. Label them! To avoid spillage and ruining tables, a plastic table cloth can be a good addition. Fold it with the contaminated side onto itself for storage. A different solution would be to put the cleaning station onto a ceramic or steel surface, which can be easily cleaned after use. Curing Station/Chamber The next step is curing the print under direct exposure to a UV light source, somewhat akin to how gel nails are hardened. Sometimes the sun is enough. Since the resin residue from washing is now in the isopropyl alcohol (or other washing liquid), treat it as chemical waste. To reduce the waste of material, flock out the resin in it by exposing the liquid to the UV light and filter the result. The result is Isopropyl Alcohol with some remaining contaminants, which can be used again for the first rinsing step. Other Tools Besides cleaning and curing the print, you need to remove the print from the plate, so you need a spatula or scraper, which is reserved only for your SLA printer. Never use it on the build platform of your FDM printers and consider it contaminated with uncured resin after use. Best cure residue on it in the UV chamber and then physically chip off the hardened resin before handling it without gloves again. Similarly, a tool to stir the resin and remove flakes is often used, and some makers have special spatulas to clean the vat. Clean them well after use. You will want to have some nice snippets to remove the support structures at some spots and some pliers to break them free - safety first. Needle files and sanding paper for cleanup where the support stuck are a given. Resin Recovery Since the resin in the trays might harden over time, you'll want to have some sort of rig to hold the vat at a tilted angle upside down so it can flow out, back into the resin bottle. A cover might also help to reduce exposure and allow short time storage in the machine. Thingieverse has a couple of solutions for lids, pouring and filtering stations as well as other accessories. Look for those that fit your printer. The Resin should be stored in airtight and light-blocking bottles. As an extra security measure, you should store the resin in a closed cupboard to prevent light exposure through not totally opaque bottles. More on Re-using resin can be found here Further Reading/watching Angus/Makers Muse on 3D printing safety A rather good guide regarding Resin 3D printing
Software for adding supports to 3D printed miniatures in STL file
I don't think you'll find automated software to create supports "the way I want them to look." So... It might be worth investigating the "Advanced Properties" of Cura to see how thin, and thinly spaced, you can set its support walls to be. I know there are settings for reducing the thickness at the top of the support, as well as some sort of "top gap" setting, for just the kind of problem you're dealing with.
Bed is leveled and not warped but still uneven printing?
Be sure that you have no previous bed meshes saved and automatically applied: use the commands M502, M500. Once you have done that, try this technique: It's about using a ruler to detect areas which are lower, and then use stickers below the glass to thicken those areas only, resulting in a much flatter surface. If you don't want to use the blue tape (which will worsen the heat transfer, but not so much after all) you could use 0.3 mm silicone thermal tape, which is more heat conductive but it's also quite thicker than blue tape. This other alternative consists of flattening the plate itself, but it's inevitably performed when cold, while the tape technique above can be performed at the desired temperature (since the warping may not be constant).
Cura confused as to what's touching the buildplate?
The up- or down-ness of a part is its Z-orientation, which is specified in STL. It looks like whoever published that STL file published it upside down, requiring you to flip the part or rotate it by 180. You can flip it in Cura as you've done or leave a comment to the author of the STL that the part is upside down. However, the author may not know how to fix this because low-end modeling tools typically do not have the capability of flipping a model. In these cases, using another tool such as Cura or Slicer can generate a right-side up model. Cura seems to like generating AMF files, so I use Slicer to generate STL files for upside down models. Once you correct the STL file, you'll be able to import the model directly into Cura right-side up.
How neodymium magnet affect (if any) on extruder motor
The best way to know is placing the magnet on the shaft; if you see that motor starts shaking or stops this mean that you affects the motor operation, but I think if any magnet interference can be deprecated due internal coils of the motor during operation. The motor works with some coils in the rotor and some magnets in the stator (motor frame). But the shaft is to far from the coils to be affected for the magnetism of one small neodimiun magnet which needs at least 7mm to trap another small metal objet or for induction sensing and 2mm as maximum for creating electrical flows (generation); this values are afected if the magnet is placed over other metal part reducing his atraction field, and the armor is too big for an small magnet 8x3mm. You can attach some indicator with a double sided adhesive tape (3M) if still are worried about affecting your extruder. If your motor extruder is heating during extended usage periods you should adjust the motor current, for example: you motors is rated 0.5A you should calibarte the current for 0.48A or 0.45; this could reduce the torque force of the motor by a little. Or maybe the current current :D is calibrated above 0.5A thats way you are getting over heating.
Font suitable for 3D printing
That particular font is Sarina Regular and is part of the Google Fonts collection. Just Google "connected handwritten fonts" to find more. Kimberly Geswein does a good selection of handwritten fonts. A lot of them are constant width, but most are unconnected.
Identifying the plastic type of an unknown spool of filament or recyclable waste
ABS dissolves in acetone, you could try clipping a small section and leave it in some acetone for a few minutes and if it begins to dissolve it's safe to assume that it's ABS, if not then you'll know that it's not. This won't confirm that it is PLA, only whether it's ABS or not.
Different Probe Z offset for G28 and G29
I'm answering my own question here. The Issue was that I set Z_MIN_POS to -2.0 I guess these 2 mm were subtracted from G28 but not from G29. I don't know wether this is expected behaviour but changing Z_MIN_POS back to 0 fixed the issue for me.
Writing G-code: Audible Alert at end of print
Let's put the parts one by one: Wait for bed temperature being at 30 °C: M190 R30 Play Bleep for 1/5th of a second: M300 S440 P200 Wait for 1/5th of a second: G4 P200 That gives: M190 R30 M140 S0 M300 S440 P200 G4 P200 M300 S440 P200 G4 P200 M300 S440 P200 G4 P200 M300 S440 P200 G4 P200 Just for 0scar: M300 S1396.91 P400 ;f7 G4 P400 M300 S1661.22 P600 ;as7 M300 S1396.91 P400 ;f7 M300 S1396.91 P200 ;f7 M300 S1864.66 P400 ;b7 M300 S1244.51 P400 ;es7 M300 S1396.91 P400 ;f7 G4 P400 M300 S2093.00 P400 ;c8 M300 S1396.91 P400 ;f7 M300 S1396.91 P200 ;f7 M300 S2217.46 P400 ;des8 M300 S2093.00 P400 ;c8 M300 S1661.22 P400 ;as7 M300 S1396.91 P400 ;f7 M300 S2093.00 P400 ;c8 M300 S2793.83 P400 ;f8 M300 S1244.51 P400 ;es7 M300 S1244.51 P200 ;es7 M300 S1046.50 P400 ;c7 M300 S1567.98 P400 ;g7 M300 S1396.91 P1600 ;f7
How to choose a right 3D printer filament type?
Determine what properties you need the filament to have. There are a very wide variety of filaments because they all have somewhat different properties. You need to determine what properties you need your final print to possess. For instance, ABS can be smoothed used acetone and PLA is biodegradable. More exotic filaments could be conductive or be extremely flexible. Do not neglect to consider safety of the plastic in your application. A full list of properties is too broad for an appropriate answer from this site. Determine what you printer is designed to handle. Most printers can handle PLA and ABS with little issue but higher temperatures are required to use some materials such as nylon and polycarbonate. Determine beforehand what your printer is designed to handle. This includes determining whether you have and appropriate heated bed or other accessories. Determine what you can afford. Printing not only requires the cost of the weight of filament in the final print but all of the support structures and misprints you produce. Not only should you look for inexpensive filaments, but you should look for ones that are good enough quality you don't waste time and money fighting problems with the raw material. All in all, this will vary case by case. I would recommend that you start with PLA or ABS as they are common and relatively easy to work with but that you do your own research into what each individual filament type has to offer..
Inductive kickback protection?
Kinda, sort of, but not really. I'll look at the A4988 (datasheet). The motor pins are connected by diodes to ground and Vbb (the motor suppply voltage). Essentially, they act as a bridge rectifier making any back EMF or inductive spikes appear (rectified) on Vbb. If you were to suddenly power down the driver this could cause a rather large spike on Vbb. According to the datasheet, there is a 40 V Zener on Vbb which will clamp the voltage to that level. (Another popular stepper driver, the DRV8825, does not appear to have this Zener - always check your datasheet!) So, yes, there is inductive kickback protection. However, it only clamps the voltage to 40 V. Depending on the rest of your circuit, this could be quite damaging. The datasheet recommends that a 100 μF capacitor be placed on Vbb. If you are driving a typical stepper motor with 2 A and 4 mH coil inductance, the energy stored in the coil is 8 mJ. This energy is only enough to take the capacitor up from 12 V to ~17.5 V, so if you have a large enough capacitor on your stepper driver (as you should!) then you're protected against inductive kickback. Note that if you move the motors by hand then you can still build up a higher voltage on Vbb. I've heard anecdotes of people who damaged their printers like that.
Insulate hotend on Makerbot Smart Extruder
I recently wrapped a LOT of hot PLA around my print head and, as a result, had to remove the kapton tape and the fibreglass insulation that came with it. I was reluctant to use fibreglass because of the tissue embedding hazard and the lung hazard (especially on what is effectively an indoor appliance) and kapton tape is very hard to find in Australia. After some research, I wrapped the print head in 100% wool felt that I bought from a fabric store (be very careful, as most craft felt nowadays is either acrylic, polyester or a poly/wool blend) and then bound it all up with teflon thread tape (plumber's thread tape). Cotton has a scorch temperature of 150 to 200°C, while wool won't scorch until 500 to 600°C, and the teflon tape can handle temperatures between 200 to 300°C. Did it work? Well I can now put my finger on the outside of the tape after the element has been at 200°C for 10 minutes, and only feel a little warmth. The print head heats up twice as fast, and I can run my massively oversized print cooling fan at 40% rather than the 10% I could use before. There is no odor of anything cooking off either. Success!
I'm searching for a tool to generate 2D PDF of one side of my model
OpenSCAD has a great feature called projection which allows you to select a vertical location and effectively "cast a shadow" of the part. The projection becomes a 2D object scaled to the original model. One can rotate, translate or otherwise transform the model prior to performing the projection function, in order to get the appropriate 2D drawing. The resulting "model" is rendered using F6 and can be output as .DXF or .SVG as well as a number of other formats that might not be as useful to you. EDIT: I've been recently using Onshape to create drawings from 3D models. It's also a free program, browser based which allows you to import your STL model (or other acceptable formats). Once imported, a drawing can be created with three-view and isometric, or you can edit to create only a single view. This can then be exported/downloaded as a PDF. The screen capture image below is from a project I've recently created. The original STL file was imported and the result is quite clean.
Filament that is resistant to ozone
If making your own caps ends up being the best solution, TPU (thermoplastic polyurethane) is probably your best bet. I don't have specific information on printed TPU filament and ozone, but TPU is widely regarded as one of the most chemical-resistant materials you can easily print with, and this page by Ozone Solutions rates polyurethane (no mention of specific types) A/Excellent described as: Ozone has no effect on these materials. They will last indefinitely. Being at least slightly flexible, TPU will also yield a good seal without any additional gasket. You should probably choose an unpigmented "natural/clear" TPU filament in case the pigments do react. It might (probably would) also work to coat an existing cap with polyurethane. I'm not sure how you'd best get it to adhere, but lightly sanding the plastic then using a spray in multiple coats is what I'd try first.
Do firmware updates affect print speeds?
I agree with @silver, but also wanted to point out that maybe the acceleration values on the old firmware you had were different from the default in TH3D R2.7. The current settings can be retrieved using the M503 command, which should return the values from the eeprom: Maximum Acceleration (units/s2): M201 X1000 Y1000 Z100 E10000 Acceleration (units/s2): P R T M204 P400.00 R1000.00 T1000.00 You can then lookup the default settings for your printer model and use M201 and M204 to set the new values. Then M500 to save the new settings to the EEPROM.
Over extruding and feeding gear is grinding Ender 3 pro
It sounds like a setting mismatch between your slicer settings and the physical printer configuration. Diagnostic and informational questions follow: Can you provide more details of your machine configuration and your slicer settings? Are you using the Creality Slicer? Can you also provide more information about what you are attempting to print? Are you printing a downloaded design or your own? Have you printed successfully before? If so, the key question would be to ask what has changed. There are a number of settings to check, but the first one that comes to mind is the filament diameter setting in the slicer. Secondary to that would be the flow percent. Check the diameter of your filament versus the setting in the slicer. The grinding of the gear makes me think that the physical filament diameter is larger than the slicer setting. This could explain extruding too much material and producing "blobs" and also the grinding.
Messy top layer with PETG filament?
Five top layers should normally be more than enough to create a seamless top layer. Indeed, PETG prints a little differently than PLA. It requires a higher hot end temperature, less part cooling (to improve sticking to previous layers), a higher build plate temperature and usually care in choosing the right initial layer height. Once the printer needs to create the top surface layers, too much temperature, too less cooling and too low of an infill percentage can cause the top bridging over the infill to fail. Your settings seem to be fine except for the low percentage of infill, 15% is very low. Other possible causes could be under-extrusion and too fast printing, but in this case the low infill percentage is probably the main reason. To get a better top layer you could first try to increase the infill percentage. If you go to 20 or 30 % infill, you would only marginally "waste" filament. More filament and time is wasted when whole prints fail as of a bad top layer.
Is it possible to run 2 Ender 3's off one power supply?
The heated bed alone draws 220 W of 24 V power, so I'm going to say no, you shouldn't attempt to run two Ender 3 machines from a single power supply. Instead, because the whole machine only draws about 3.5 A at 115 V (or half that at 230 V), you should consider installing a power strip or (better) a small UPS to both power both machines from your existing outlet(s) and also protect the machines from power surges and short power interruptions. You won't overload your outlets, and you won't risk burning out a power supply by drawing twice the power it's built to provide.
3D printer ends print by sinking in to it and getting stuck
As can be seen from the G-code file, the head is instructed to travel to x=0, y=0 (G28 X0 Y0 is actually a homing instruction to home the head and label the position with zero X and zero Y). After that it powers off the motors (M84). From your picture, it looks like the head digs in the print without moving to the home position, so G28 X0 Y0 is not working (although you mention it tries to move while digging in?!?). That is strange as there is no instruction to lower the head. Please alter G28 to G0 so that it reads: G0 X0 Y0 (or G1 X0 Y0 which does work and will instruct the head to move). The digging into the print could be explained by the weight of the head/carriage that cannot be held when the steppers are not powered anymore (as instructed by M84). When the nozzle is hot, the nozzle will then dig into your print. Edit: Now that I see your comment on another answer, your proprietary software may produce different G-code than Cura does, this could imply that your printer does not use a "standard" G-code interpreter or does not implement all G-codes.
Heated Bed vs Heated enclosure for large scale printer
I tend to agree with Davo, that you might want both. But I'd probably try the enclosure first. My printer is about 1200 by 400. I looked at options, and found some difficult trade-offs: First, the big heatbed approach: as you know, getting a single heatbed that big will be expensive (and if it ever breaks or fails, you have to replace it all). a big heatbed also draws far more power than a RAMPS board can switch, so you'll have to use the on-board control to control a power relay (solid state or mechanical). a big heatbed will also waste a great deal of power when you're doing small things. Second, the heated enclosure approach: more costly to heat up at the beginning, but if insulated it may be cheaper for long prints (with a bed that large, your prints might take really long, too) because it can retain the heat better. if you keep the air circulating inside, you'll get much more uniform heat, rather than hot first layers and cooler higher layers. consider the effect of the heat on all the other components: motors, electronics, pre-heating the fibers, thinning any lubricants,.... you could save some heating cost and time by providing a way to shrink the space to be heated: perhaps just a partition you can insert when doing smaller prints. It wouldn't have to be nearly airtight to make a big difference. A third option is several small heatbeds: this lets you turn on just the ones you need for any given print still expensive, but cheaper than one big one, especially when any of them fails. there will be uneven heat at the seams, but if you place the boards tight together I doubt it's enough to matter. You could also carefully trim the boards' edges to get the spacing closer to uniform. temperature regulation will be tricky. If you want to support a temperature sensor for each board, you'll have to start hacking at the control software, because (as far as I can tell) there's no provision for multiple heaters. Probably easier to create a completely separate unit with a big power supply, and a simple thermostat for each of the beds, that you just set manually before starting a print. Overall, I think the heated enclosure may be best. I like the hair dryer idea or heat gun idea, of course you'll need a little extra circuitry to switch it, but you can use the usual software for temperature regulation by installing thermistor or thermocouple in the case (just be careful about circulating the air well enough to avoid "hot spots"). You may want to add an extra cutoff to protect against runaway heating -- I had that happen once when a thermistor literally fell out of the mounting hole in the hotend. Something like https://www.grainger.com/product/SUPCO-Thermostat-407L11. Let us know how it turns out.
What part is this? Circular threading spool gear, about 10 mm diameter
This is a timing belt pulley. Specifically, is a GT2 timing pulley, 2 mm pitch (between teeth), 6 mm wide. The drive diameter is measured by the number of teeth (16 in this case) , the shaft diameter (bore) is measured in mm. The 'GT2' part refers to the tooth profile, some other examples are shown half way down this page.
Polyurethane-and-steel timing belts?
It's a question of what you want to use the belt for. All Belts are subject to stress as they run around the motor and idlers and gears and bend. They will get eaten as they are subject to friction against parts, they will stretch as they are subject to tension. All this applies some sort of stress or another on the belt. Anything that is subject to stress wears. And as it wears, it will fail. The question is just: What is your life expectancy? The lifetime expectancy is again dependant on how the belt is used, so usage dictates lifetime of the belt. Each belt type has an application it is designed for. A bending radius that is to be kept at, a gear it is to be used with, a load it is expected to move, a tension it is expected to uphold, and a lifetime it is expected to serve. Let's take a short look at some rough ideas what a soft rubber belt without additions This is usually a bad choice for printers, but can occasionally be in very cheap kits. This kind of belt has applications. It is for really low loads, it can work tight bends for a long time and provides superb self-tensioning with just a very short tensioning device. On the other side, most rubbers don't take heat well, stretches a lot, wear fast and can only move a light load. If it rubs against a standing object, it squeaks horribly. a medium hard, somewhat elastic belt reinforced with fibers The standard belt we often get with printer kits. the fibers lessen the material's stretching ability while offering still some self-tensioning (depending on the fibers). These properties allow to move medium loads yet harder material demands slightly larger bend diameters (not too much, but measurable!). When the piece gets friction against a standing surface the sound will be not that horrible, but the harder rubber might start to shave off, break teeth and destroy the belt after some time. The typical reinforcing is done with cloth, usually cotton, so there are some limits to how much they can take. reinforcing with aramid fibers Some fibers are better than others for our applications because of how they stretch and reinforce it. Aramid fibers, for example, are better than cloth. Some consider them as impossible to wear out with the tension in 3D Printing applications alone, but that is not entirely the case. They still stretch under larger loads or on longer lengths enough that it can be a problem (or become one). They also can still be shredded with friction (and heat). For a professional machine, the expected lifetime is quite nice. They are though, but only as good as the rubber used and if properly installed. There are also generally two types: long fibers and short fibers. Long fibers have a somewhat even stretching behavior, while short fibers have totally different stretching behavior. The latter type is looked at in scholarly articles like Yin, Zhou, Lou et al. a hard belt reinforced with fibers Let's take... Uhm... a toothed belt from a car. I believe some of these are aramid-reinforced, old ones are on cloth cores, most modern ones I know are steel reinforced. It is somewhat hard. By design, it is made to withstand a strong tension at high speeds. It needs somewhat big bending radii for the hard rubber, but that is easily given by the gears and the large teeth don't break easily. Over the lifetime it will slowly stretch due to the temperature it will encounter, till at some point it gets too loose or looses too many teeth as the parameters don't match up with the teeth anymore and they get ground away. It is made to deliver high torque and could move - if something similar was used on a printer-like machine (like a large CNC), a heavy load for a long time, but the machine needs to be made accordingly. steel reinforced belt Steel is going stiffer. Steel reinforcements usually get the stretching parameter to a bare minimum at the cost of increasing their minimum bend and added weight. They can be used to move very heavy loads without the belt starting to slack as it simply can't stretch to give slack on the underside of the belt loop when forces are applied. Steel belts are pretty much Heavy Duty. If you can work with the bending radii belonging to them (as said, usually a little bigger than a similar fiber-reinforced one), you could make use of these properties, for example in a CNC Router with a full spindle or when moving very heavy tool heads. carbonfiber reinforced And then there is the super heavy-duty carbon fiber. One can barely stretch it (steel is less stretchy), making these belts super tough in the stretching compartment and granting an extremely long life under most conditions. In comparison to steel, they can work much tighter radii. Usually, they are coupled with urethanes to get a high wear resistance against abrasion. The biggest downside: their price. Belt Materials Silicone Silicone is soft but high temperature resistant but dislikes abrasive forces. Uretane Urethanes are not the best to handle the heat, but they can handle abrasive forces. They also don't create dust in the same way as other rubbers. Neoprene The most interesting feature of neoprene belts is their reduced noise under work.
Blow vs suck air over hotend's heatsink
Getting hot air from the radiator is definitely wrong idea because of few reasons: hot air can damage your fan (as they are usually not heatproof). Cold air cools the fan cold air is denser so fan can suck more cold air than hot air so cooling is more efficient (fig A) in terms of plug of radiator (with dust) it's much better to try to push cold air into plugged fan (fig C) than to suck the air from it (fig B). When flow is decreased there is higher possibility to damage the fan as it doesn't cool itself Of course we are talking about 3D printers with small plastic fans. Please notice (almost) all fans construction: they are designed to get air from the top of the fan and push it to the bottom (this construction prevents damaging/plugging fan motor by dust)... and their mounting wholes (or clips) are usually... naturally suggesting to direct air to the heatsink)