title_body
stringlengths 20
149
| upvoted_answer
stringlengths 32
13.1k
|
---|---|
How to cut OpenBeam/MakerBeam? | Aluminum of almost every grade is very easy to cut with a hacksaw. I would suggest to mark clearly the cut line and to wrap masking tape at the edge of the cut. Consider to allow for about 2-3 millimeters (1/16") extra material for final finishing. Cut across the line, rotate the part ninety degrees and cut again. Once you have the guide cuts in place, you should be able to manage a square cut by following those guides
You will want to have a clamping mechanism available, such as a vise or workbench type device.
After the cut is done, use a sharp file to make final adjustments to the length and appearance. Push the file, do not drag it backwards. Push forward, lift away from the work piece as you return, then push again. Pick up a file card, which is a fine metal-tooth brush used to clear the teeth of the file.
It is very easy to remove material with a hand file, perhaps three or four strokes to remove 1/16".
Your accuracy will depend on the measurement of the lines you create and how carefully you file to the edge of those lines. |
What exactly does automatic bed leveling do? | Last first: use of a raft has nothing to do with bed levelling. It depends only on the features/shape/etc of the object being printed.
Now, as to what the auto-levelling does: the answer is, sadly "it depends." A simple algorithm will just find the Z-height of the four corners and apply a bilinear correction to Z as a function of {x,y} coordinates. A really good algorithm would map the entire build plate to some designated precision (perhaps 5 mm) and create a 2-dimensional lookup table to adjust Z over a curved build plate. What your printer's levelling software does is more likely the former.
Why? because if you try to correct over curves & bumps, then you will end up distorting your entire printed object (basically forcing every layer to follow those distorted axes). Far better to have some flattened or "fat" spots in the first layer printed, and then print proper planar layers after that.
Example: I know my bed (AnetA8 aluminum) is slightly bowed, peak in the center; so after levelling the overall bed I try to set the Z-zero so the outer extremes of my object have good adhesion, even if the center region of the first couple layers ends up non-extruding because the nozzle touches the bed. |
How to change the extrusion value (E parameter) in G-code? | Yes, it is possible to influence values of the E-parameter, even to make them integers.
I see three possibilities:
force firmware to support units smaller than mm - suggested approach
force slicer to produce integer-like values - most of below explanation
change meaning of E - custom approach, including RPM interpretation
Each of above needs post-processing of the G-Code output. There are some tools available, but required logic would need to be added (programmed). Some are simple scripts and this won't be difficult task. The rest of solution is much more difficult.
By the book, the E value is new coordinate on the E (extruder) on axis, in current units. Unfortunately, the only position units reflected in standard G-Code are millimeters (see G21) or inches (see G20). Therefore using integer values would mean very limited resolution, at least 1 mm of filament pushed at a time. Introducing smaller unit into firmware seems to be most reasonable approach.
Tools to post-process G-Code files
The G-Code generated by slicer would contain Ennn values as fractions in millimeters (or millimeters). Generated file may be post processed line by line to alter these values. There are many examples of scripts or tools doing similar job.
One example is simple python script metric-gcode-truncator stripping numbers to 4 decimal places. Simple changes to this scirpt could be sufficient in simplest cases.
I found this script listed between other G-Code Utilities. Also, I found source code of grecode, which seem to be much more comprehensive G-Code transformation tool, but with no similar functionality out of the box.
Next improvement would be to use the script as slicer plugin, to streamline the everyday process. Maybe some existing Cura plugin could be a basis or example.
Support for smaller units in firmware
First task is to select smaller unit (like micrometre, nanometre, or even non-metric abstraction).
Source code of existing firmware must be the supplemented to properly intereprete such values. In Marlin focus should be on parser.h and parser.cpp, following keywords INCH_MODE_SUPPORT, LINEARUNIT_MM and LINEARUNIT_INCH. Respective changes must be also added to configuration files.
Key inspiration in parser seems to be following part:
static inline void set_input_linear_units(const LinearUnit units) {
switch (units) {
default:
case LINEARUNIT_MM: linear_unit_factor = 1.0f; break;
case LINEARUNIT_INCH: linear_unit_factor = 25.4f; break;
}
volumetric_unit_factor = POW(linear_unit_factor, 3);
}
The main difficuly would be to refine parser and the rest of code to ensure that new units are only used for E movements, not for other axes or G-Code commands related to speed or other settings.
Then, each G-Code file must be post-processed with prepared tool, which will recalculate and alter Ennn values (or others), only for selected G-Code commands (this must relfect). For metric units it could be simple multiplication by 10n (visually it is shifting a decimal point).
Summarizing, possibly the simplest would be to just introduce new unit for all, and re-process G-Code files accodingly changing each value X, Y, Z, E. I cannot advice how such changes would affect F (feedrate), speed and acceleration settings.
Slicer producing integer values of E parameter
Long story short: decrease steps/mm (firmware/printer), decrease filament diameter (slicer), then Ennn values in G-Code will shoot up and could be rounded to integers without drastical loose of quality. Units for extrusion become then fake (scaled).
Software may not be ready to support adequately low values (configuration, rounding) or high values (calculations). So in practice the values configuration could not by as minimal as wished, which would more or less impact the quality. There are is speed setting trouble, beacuse extrusion speed is correlated with movement speed.
Detailed theoretical explanation and example calculations are below.
Steps/mm
However this is still useful, because each printing firmware has configurable steps/mm setting (or some analogous constant value). Steps/mm is basic and known characteristic of extruder, representing number of (micro)steps of extruder's stepper motor to push this 1 millimeter of filament (traverse E axis). If this steps/mm constant will be set to 1, then extruder will make only 1 (micro)step for G1 E1. This change could be done in firmware configuraton, temporarily with G-Code M92 E1, or stored to EEPROM.
Volume
Filament is a long cylinder, and extrusion length is height of short cylinder (segment of whole): $l= \frac {4 V} {\pi d^2} R$, where:
V - volume necessary to pring path, internally calculated by slicer software
d - diameter of filament configured in slicer
R - customized extrusion multiplier setting (R) a.k.a. flow rate. (It was introduced for fine tuning, in runtime or when chaniging filaments, to avoid workarounds like manipulating steps/mm or diameter to untrue values. This parameter is not really important for this discusion, included only for completness.)
Printer configuration
1 mm of filament translates to actual volume of material (mm3). The correct steps/mm is very important, so the rotation of motor (travel along E axis) will really extrude the expected amount. If value of steps/mm configured in printer is reduced, then interpreted G-Code commands will be translated to too short distances (less steps). To ensure the needed volume, either more millimeters would have to be ordered (G1 Ennn) or filament would have to be thicker. Filament is what it is, so only the first choice is possible.
For example, using 1,75 mm filament and having extruder which needs to make 760 steps to push 1 mm (a fact, determined hardware characteristics), then to extrude 1 mm3:
if printer is set for 760 steps/mm (correctly), then G-Code must contain correct E0.415752 mm for adequately long cylinder being pushed throught the nozzle
if printer is "misconfigured" for 1 step/mm, then G-Code must contain edaquately scaled value E315.9713 for the same cyllinder to be pushed (760x bigger number). The value is actually an exact number of (micro)steps. And it is big. Decimal part is negligible. It can be safely rounded to integer.
For practical use, the printer's speed settings and limits would need to be also multiplied for extrusion and retraction. Otherwise extruder moves would be slower by scaling factor, with negative side effects of hot filament behaving on its own.
Right place of scaling
So how to obtain this scaling? Simplest way is to increase flow rate in the printer (e.g. to 760%). This will scale Ennn values form G-Code in runtime. An original G-Code is needed for this, with tiny numbers. So this is not a solution for integers.
Then how to force slicer to produce G-Code with scaled numbers?
Slicer configuration
Slicer calculates volume required to print some fragment and coverts it to millimeters of filament, basing on configured diameter. So this diameter is also very important. Everything must match. If very small diameter is set in slicer, this will drastically increase length of filament pushed.
For example:
For 1.75 mm filament, to extrude 1 mm3 volume, slicer will order to push E0.415752 mm.
After changing configured filament diameter to 0.01 mm, slicer would order to push E12732.4 mm. This is big number. But not even similar to the above needed length E315.9713.
Slicer usually adds speed (feedrate) information to G-Code. So any speed settings and limits for extrusion and retraction would need to be multiplied also in slicer. There are also other settings to modify, like retraction distance.
Matching equation
Change of diameter must reflect the change of steps/mm. The proportion could be derived from cylinder volume formula. Diameter to configure in slicer is $d= D \sqrt { \frac L l}$, where:
D - real diameter of filament
L - standard extrusion distance: height of cylinder having some referenced volume and D diameter, if steps/mm reflect actual hardware
l - scaled extrusion distance: height of cylinder having the same referenced volume, if steps/mm reflect actual printer configuration
Values for calculation need to be determined for some example volume. This was already done. Following previous examples, diameter required in slicer is: $d= 1.75 \sqrt { \frac {0.415752} {315.9713}} = 0.063479$. Then still providing 1.75 mm filament to the same extruder, slicer will produce big values like E315.9713, but printer will perform olny one (micro)step for one milimeter in G-Code.
Remove fractional part
The generated G-Code would still include fractional part in Ennn values. The file should be post processed line by line to remove it. Simple script will do the job. It could be simple metric-gcode-truncator, after changing pattern to ([E][0-9]*)([.][0-9]+) (not tested). An improvement for quality would be to use rouding instead of truncating decimal part.
Cumulative discrepancies
There is serious disadvantage of such simple post-processing approach. The total of extruded material will vary, depending a bit on rounding approach. The fractional part is lost, so there may be impact on accuracy with over- or under-extrusion here or there. Post-processing could instead collect these rounded fractions and try to equally compensate for it in following moves, to minimize the total aberration.
I believe that the same could happen inside printer's firmware program, when it traverse floating-number distances, but this is only an assumption. Wihout fractional part, firmware will no have data to compensate anything.
Even more accurate?
Because firmware can accepts fractions below 1 for steps/mm (Marlin would accept 0.01), then theoretically the scale could be even bigger - and so Ennn values. Slicer must support adequately low diameter. (In extreme cases this could trigger unexpected overflows or errors or be blocked by software.) Printer will then multiply E values by fraction (steps/mm). Extruding resolution is still limited to 1 (miro)step. But if firmware acumulate rounded fractional parts in runtime and compensate, then total amount extruded per layer would be more precise.
Real-live attempt to slice
It was possible to set 0,01 filament diameter in Cura, after tweaking the extruder profile for such very thin filament. Nozzle diameter must be set to real size, becuase it affects many parameters of slicing. The total use of filament in my sample G-Code was >52km. File contains entries like:
G1 X72.976 Y63.428 E2623.66351
G1 X74.498 Y61.523 E2607.85791
G1 F1500 E-608
G0 F1800 X107.344 Y85.452
G1 F1500 E608
G1 F1200 X107.583 Y85.642 E326.54744
G1 X107.988 Y85.938 E536.51282
Estimated print time is >5 days. The F parameter is presumably used also by extruder, then the whole print will still slow down. To make the print really happen, possibly all speed settings in slicer would need to be tweaked (i.e. print speed for walls, top/bottom skin, infill, etc.). Then only hard speed limits in firmware would block rapid movements. Outcome quality will be most likely compromised.
Custom approaches (own G-Code flavor)
Slicer will always calculate length (travel distance), otherwise it would be against the G-Code standard. At least I did not hear of any slicing software, which would output something else then length for extrusion.
In some own custom firmware value of E parameter could be defined in any own way. For example, the E value could be defined exaclty as number of (micro)steps for extruder's stepper motor, angle of rotation refleced as integer, etc. Distance calculated by slicer would need to be re-calculated in G-Code post processing, to match requirements of this firmware.
Own piece software would be then needed to perform re-calculations (simple or not) and overwrite the original E values. The code could be possibly inspired by some of listed above, but the calculation logic need to match specification from firmware. Possibly this could become own plugin to Cura or other slicer.
RPM approach (critique of the idea)
An attempt to interprete E value as RPM (rounds per minute) is of no use, until it is synchronized with real speed of printing head movement, i.e. other motors performing movement along owne vectors to print the effective path. It is probably possible to calculate, but sounds like creating own G-Code flavor, which would ignore many other important parameters.
One of them is F parameter defined in several G-Code commands (including G1). It determines movement speed for traversing the path. It may change from move to move, making use of acceleration settings. What is worse then, it is expected to be remembered between commands and used for consecutive printer moves. Therefore focusing on single line of G-Code won't tell the whole plan of slicer, and the sophisticated plan reflected in G-Code file would be only partially executed.
RPM approach could seem interesting, if it could ensure constant speed of extruder. This would be ideal for the pressure control. But it would also come at cost of printing speed, with no accelleration control. |
Is endstop / z-probe wire required for BLTouch installation on CR-10S | A touch sensor is also a height limiting switch, so you sacrifice the Z- limit switch in favor of the touch sensor (or an inductive sensor). Furthermore, all your concerns are taken care of by the firmware. You configure the firmware so that the nozzle homes Z in the center of the build plate after X and Y are homed first.
It is advised to look up some videos of working touch sensors, then you will get an idea what actually happens. You could start with the inventor of the sensor. |
Anet A6 heat bed stopped working | This is a shot in the dark, but the vast majority of problems with a heating bed stopping to work is usually at the cables/connectors interface.
This is because in printers like the A6, the cable/connector is subject to constant mechanical stress, and - since metal fatigue is a thing - either the solder or the cable core cracks.
You should make good use of your tester to verify the integrity of the circuit in the bed and if it is not toasted you should be able to just repair the connection.
For many printers there exist "strain relief mods" to prevent this type of failure to happen. The first one showing up for the A6 is a full chain, but normally is enough the have a small enclosure for the connector like this one for the CR-10. |
Filament residue sticks to bed and wont come off | I would try a single edge razor blade at a low angle used as a scraper. If you can't feel the blade catching in the residue, it probably isn't an issue.
If you must get rid of it you don't have good choices of solvents. Maybe you can burn it off by placing the class in an oven through a clean cycle. With luck the hearing and cooling won't break the glass.
If you can't scrape it off with a sharp razor blade, I would just let it be. |
Convert a 3D NumPy array of voxels to an STL file | I agree with the use of OpenSCAD, but since it is difficult to program in OpenSCAD, I would use SolidPython, which is a front end for OpenSCAD with the full programming capability of Python.
In the alternative, you could use any programming language to decode your arrays and generate the OpenSCAD code for the little network of cubes (or voxels).
The final possibility is to generate an STL file directly. I've helped someone do this, but we found the rules to be a little non-intuitive. We used mesh tools to check out results, both by looking for error messages, and by displaying the result to see if it looked as we intended it to look. |
Problem with Creality v1.1.4 (Ender 3 Pro) and BLTOUCH v3.0 (removed C7 capacitor) | If the probe works, but not on auto homing, it could be that the Z endstop/probe wires are incorrectly wired.
From "The complete BLTouch/3DTouch guide for Creality printers (CR-10/s,Ender 2,Ender 3) for Auto Bed Leveling UPDATED" can be read:
If you connect your bltouch and when auto homing the sensor doesn’t register
& the z axis keeps dropping pressing into your bed, turn your printer off,
disconnect the power and invert the black and white connectors in the z limit
switch header (put black where white was, put white where black was).
This can also be found in this Marlin issue tracker:
The Problem was the polarity of the sensor wires was reversed.
If reversing the polarity does not work, move to the original Marlin firmware. |
How precise do models need to be for 3D printing? | It depends on what you're working on. If you're producing mechanical/functional parts (even if that just means having to connect to one another or to some non-printed part), 3 mm (0.3 cm) error is almost surely going to prevent them from working. Even 0.3 mm error might be a problem.
If you're doing standalone prints that don't have to interface with anything else, e.g. art, non-articulated figurines, etc., then it becomes just a question of what's visually acceptable, and that's a matter both of scale and of the detail level you want. For typical tabletop-RPG scale, for example, most of the acutal visual features are going to be smaller than 3 mm, so that much error is not going to work out. It might work for large busts, though.
In any case, I would recommend trying to solve the underlying problem. Either change your grid snap, or work at a larger scale and just scale down the final model. |
How should I clean my extruder when changing materials? | If you feel you need to clean the nozzle the best approach is a cold pull. You can perform this procedure with many printers, however, you should seek advice from your printer manufacturer before attempting this process if you have any doubts.
With the previously filament still loaded and the tool head cold:
Begin to raise the temperature of the tool to the printing temperature of the next filament you intend to load
As it begins to warm up perform any tasks you normally perform during filament unloading (open the idler, for example). You should not be fighting against the extruder drive gear or any other part of the tool during this process!
With a fair amount of pressure begin pulling on the filament
The old filament should eventually release from inside of the tool leaving the end of the filament roughly in a nice molded shape of the inside of the tool. Begin loading the next filament you intend to print and manually feed some filament through as the tool finishes heating
Anything left over from the previous filament including pigment or other residue should be stuck to the end of the filament.
You can perform cold pulls as many times as you wish by loading new filament, extruding a small amount, letting it completely cool and repeating the steps. |
Can't get bed to level properly | Step 1: stop using paper and get some feeler gauges. The gauge should be able to just barely pass under the HEATED nozzle.
Step 2: What are you using for bed adhesion? I use Elmer's white glue. After you think you've trammed (aka levelled) the bed, apply a generous layer of the glue in a coat on the bed. Let it dry.
Step 3: Verify bed level with a large square print that will cause the head to move to the outermost parts of the bed. Stop the print after a few outlines. Try to remove the print. If some areas are easier to remove than others, apply another coat of Elmer's glue to those areas.
Note: Do not hold down all four (4) corners of the glass bed. The aluminium plate is not going to be flatter than the glass. Only attach the glass to the bed on one side of the bed. I use the side that is furthest from the nozzle. |
Project help, printing a Neopixel enclosure to secure to a car rear windscreen | There's a handy tool for replicating curves that use a series of plastic or metal fingers in a sliding mount. One presses all the fingers to one side, then presses the bracket to the desired surface until all fingers are in contact. The opposite side now represents the measured curve and can be traced into a modeling program.
For your purposes, that is unlikely to work, as the tool is perhaps six inches long, far too short to span your windscreen.
Consider the following:
Attach a string to each edge of the windscreen or wedge a thin rod from one side to the other. This provides you with a straight line reference. Measure as nearly as possible to perpendicular from the reference string to the windscreen surface. I have a laser measuring device that has 1/16" or 1 mm accuracy above certain distance, which would not work well in this case as you approach zero at the edges.
Start in the center, record your measurement, and move an appropriate distance outward. I suggest you need only approximately 20-30 mm spacing as you are collecting points on a curve, which are likely to be relatively uniform and easily reproduced in software.
Your graph now has zero, zero on the left, and say 750 mm, 40 mm on the right, with matching numbers in the middle. On real paper, turn it into a graph, or use a suitable vector editing software such as Inkscape and duplicate it there.
Depending on the shape of your window, you may have to replicate the process at different heights in order to get a proper representation of the curve of the glass.
Once you have the dots, run a Bezier curve through the dots. The resulting like can be extruded or otherwise converted into the segments necessary for your 3D printing project. |
Extra data appended to the Y values when issuing `M92` & `M500` | *75 is the checksum value, (a method for verifying the integrity of the transmitted information).
RepRap wiki gcode : checksum
There is probably an option to not use/disable checksum generation in repetier/slicers, however this may only be advantageous for use with code run from the sdcard as it is extra processing (and probably less relevant when not being transmitted over serial connection. ) |
How to get a quality print of a thin single-walled shell? | Cura is exceptionally bad at printing details comparable in size to the configured line width. Lower your wall line width to something like half the wall thickness (i.e. 0.225 mm) and see if that works. With a standard 0.4 mm nozzle I've had success printing tiny details with 0.2 mm line width or smaller. For example:
And here's your model printed at 0.225 mm line width:
I also had to slow down the print speed considerably to get first layer adhesion with such thin lines. I did 40% via the printer UI, relative to 30 mm/s base rate, so effectively 12 mm/s. After first layer increasing speed was no problem.
Important: You also need to set the "Outer Wall Inset" (wall_0_inset) setting to 0. This is a broken Cura feature that's supposed to compensate for wall line widths less than the nozzle width, but the math is incorrect and not actually needed, and if it's left at the default it will reproduce exactly the same "missing wall" issue you got with full wall line width. |
Magnetic heatbed options - can I trim these to size? | Adhesion and sizing
First of all, the product you link is very likely a BuildTak clone or a similar product. My Ender 3 came with a similar one and I have changed to a different one after I ripped it off accidentally to mount a similar one. I have yet to find a sheet of this material that you can't cut to size, as it is pretty much only a polymer with a strong tape on one side and a rough surface on the other. So trimming is not a problem at all.
Mounting
To mount your new surface, you need to get a surface onto your heatbed that has
good contact on all the area
securely holds the bed in place
is as flat as possible
So you surely want to get a metal sheet that is as flat as possible to mount your surface on. If your bed is heated, your mounting method needs to transfer the heat as good as possible, so a direct contact to the heated bed would be good. This, however, rules out most thin magnets, as these magnet sheets demagnetize under heat, limiting the usability for higher temperature materials, for example, ABS. The original Prusa uses a spring steel bed and high-temperature magnets embedded in the heating platform to work around this. |
How is the extrusion rate matched to the movement speed? | I'm not sure what you mean by "XYZE combined speed", but I wonder if it's the same misconception as in Details of Marlin's feedrate calculation. The feedrate is a regular 3-dimensional velocity in XYZ space which is the maximum rate the printer will attempt to achieve, subject to individual axis feedrate limits (including E) and acceleration profiles.
In any case, the simple answer your question of how the E-axis motion is synchronized with motion in space is no different from how motion along the X-axis is synchronized with motion along the Y-axis. If X and Y motion were just allowed to take place independently up to the desired speed, with no constraint that they happen in step with one another, then the path the print head traveled would not be a straight line but (ideally) the junction of one horizontal or vertical line with one diagonal one or (with acceleration profiles applied) some approximation of that by curves. But of course the X and Y motions do take place in sync with one another. Each spatial coordinate during the move is a function of time computed by the "planner" logic in the printer firmware based (essentially) on the ratio of the magnitude of individual components of the move to the overall length of the move and speed.
In traditional firmware prior to Linear Advance, the E axis is synchronized exactly the same, according to the ratio of the move completed to the whole and the total amount to be extruded. With Linear Advance, that's adjusted by an offset proportional to the current baseline (before applying LA) extrusion speed, to compensate for the filament being compressible and/or its travel path (e.g. a bowden tube) being elastic. |
Changing the home position on a Prusa i3 MK2 | Consider the original installation with the orientation of the Pinda probe to the nozzle. Let's say for argument's sake that the Pinda probe is 3 mm to the right and directly in line with the nozzle on the y axis.
If you examine your new nozzle, I would expect that the relationship of the nozzle to the Pinda probe no longer matches the original spacing.
If possible, re-design the mount to place the Pinda probe in such a way as to match the original design.
Thanks for pointing out my oversight, Mac. If the relative position of the nozzle and pinda probe are as the original, the solution is then in changing the appropriate parameters in the firmware.
I found a reference for someone who had a bit smaller error in home position, but the concept is the same.
The link above points to information reading thus:
In Configuration_Prusa.h:
Code: Select all // Home position
define MANUAL_X_HOME_POS 0
define MANUAL_Y_HOME_POS -2.2
define MANUAL_Z_HOME_POS 0.15
// Travel limits after homing
define X_MAX_POS 250
define X_MIN_POS 0
define Y_MAX_POS 210
define Y_MIN_POS -2.2
define Z_MAX_POS 210
define Z_MIN_POS 0.15
it will be necessary to connect the printer via USB to a computer running an Arduino IDE and to load the Prusa specific files for that printer. Edit the noted location, save/write the configuration and test.
I would suggest small adjustments in only one or two parameters at a time, to avoid ambiguity in the cause/result sequence. |
Uneven walls, not solid | Triangles?!
First of all, the triangles on the STL are not a problem - they are just how STL is defined: a mesh of triangles. you can't save anything but triangles in STL, so let's not bother with that item but the actual elephant in the room: the print.
Underextrusion
Step 1: proper settings
It shows signs of underextrusion. And I can exactly tell you where part of it comes from: You have set the line width to below the nozzle width. However, the line width should be best 10% larger than the nozzle. All of these lines should read between 0.4 to (as I have set it) 0.45 mm:
With a 10% wider line planned into, it is not necessary to have an extra initial layer line width of more than 100 %, but it can help in adhesion.
Step 2: Other issues?!
There might be other issues at work, though they will show up after setting the width much better. The following two strike me as most likely if the problem persists with the now considerable increased flow:
The retraction and/or retraction speed might be set too high.
mechanical issues of the extruder system, for example, worn gears or uneven pressure against the gear due to damaged parts. |
Export firmware as a .hex | Current versions of Arduino IDE
Use the menu option in the Arduino IDE:
Sketch ► Export Compiled Binary
See post #6 from the thread How to get hex file from arduino files ?:
Well, since it was bumped it's worth mentioning there is a new way to
do this added in Arduino IDE 1.6.5:
Sketch > Export Compiled Binary
If you are doing this with an example then you will be prompted to save the sketch in another location.
Wait until the sketch has finished compiling.
Sketch > Show Sketch Folder
The .hex file will be in the sketch folder
Here is a screenshot for OS X:
There is no need to fully compile, a simple verify will suffice. From post #10:
Reopen Arduino, and open a sketch of your choice (use the Examples->Digital->Blink if you have no other sketches). Hit the Verify button to compile the sketch. Now, navigate to the build.path folder. You should see a bunch of files including one with a .hex extension.
Older versions of Arduino IDE
If using an older version of the Arduino IDE, from post #12:
Try this if using an older version of Arduino
Taking out HEX file from Arduino in 3 simple steps
Open Arduino IDE
File ► Preferences menu
Find "Show verbose output during " and check the "compilation" box
Locate the preferences.txt file and open it
Add the following line (this is the path to the directory where the hexfile will be stored):
build.path=C:\Users\<username>\Desktop\hexfile
Change the following line
export.delete_target_folder=true
to
export.delete_target_folder=false
Quit the Arduino IDE and restart it.
Now when you compile, the directory specified in build.path will contain the .hex file (along with other files which can be ignored) |
Help fixing Prusa i3 MK3 print jams | When I started printing ABS with my Prusa i3 MK3 MMU2+ printer, I started experiencing jams on some longer prints, which was heat creap, possibly combined with old filament.
I improved the cooling by filling the gap between the sides of the heat sink and the plastic extruder body. I think I stuffed it with some soft foam rubber, but anything that can handle the (what should be fairly cool) temperature should work.
My hypothesis is that with gap allowed too much of the air to pass without engaging the heat sink, compromising the cooling.
With that change, I haven't had heat-creap jams.
You aren't printing ABS, but the temperature is high, and PLA softens as a low temperature. IMO, it would still be worth making the change.
It is the gap on the front and rear sides that I blocked. The heatsink fins are fully open for air flow.
Some people here have changed out the Noctua fan for one that is noisier and pushes more air, which should also work. I appreciate the quiet fan, so I tried to get more work out of the fan I had. |
Combining multiple STL files | The operation you want is almost just cat'ing the files together. However you need to remove the 80 byte header from all but the first, and add up the 32-bit triangle count from each file immediately after that. Output should be:
Copy of first 80 bytes of file 1
Sum of int32 from offset 80 of each file.
Bytes 84-end from each file.
See https://en.m.wikipedia.org/wiki/STL_(file_format) |
Installing Slic3r on Kubuntu 14.04 with NVIDIA | There is a huge problem with any linux distributions and Nvidia drivers. I have tried countless times to get that driver to work but it crashed my systems time after time. If your slicer works with the default driver i would not try to change it. If it doesn't then you may have to go to windows where the driver is guaranteed to work. I know this is not the answer you are looking for but unless you can code a new driver to work for Linux thats the only solution. |
Point Cloud to STL File | In order to properly get an STL file out of a point cloud, you'll need some tool to help triangulate the points to create proper vectors. The shell that is created in an STL is what the slicing engine will "slice".
I'm not as familiar with the full potential of MeshLab, but I would think this tool is best suited for files that at least have most of shell already in place. Essentially best for fixing STL's.
In the past, I've used (the very expensive) Unigraphics NX8. This CAD/CAM software is very powerful and has tools for creating meshes out of point clouds. I believe it was the sew tool that allowed me to do this in the past (I no longer have access to the software). Other CAD programs such as SolidWorks, Rhino, AutoCAD, etc. might have similar features.
Alternatively, I think it looks like you might be able to convert a 3D point cloud in SketchUp. If the cloud is layered by height and each layer had points on the same -Z- plane, then you might be able to automate creating lines between the nearest points on the same plane. Then it might just take a little bit of manual labor to "fix" the model to become 3D printing ready. Also check out this forum post, it looks like someone had luck in converting terrain point clouds.
Completely alternatively, have you considered converting an image to STL? I've done this many times before and it turns out quite nicely. If you can find topographical map of the lake, you could alter the image into grayscale (play with it a bit). Then use software to convert the grayscale image to STL. |
Smooth finish in Slic3r using Support Material | I'd say the clue is the material itself and the geometry of the object. But in terms of Slic3r settings you could experiment with:
(print settings >> support material)
pattern spacing (he has here something around 5mm)
pattern (I'd say the best for you is rectlinear)
contact z distance (choose 0.2 or close to that)
interface layers (here 0 (zero) for sure)
don't support bridges (this one depends on your geometry and if slic3r calculates something as a bridge or not)
All above is also connected (in a way) with HE temperature and layer height. Usualy the higher temperature (in a range for specific material) the better sticking between layers. |
Anet A8 One Z output only moves down (even on up command) | From the data you provided I would postulate that the problem is likely hardware: either with the the general assembly of the motherboard or with the stepper drivers.
The test you already performed excludes the stepper motors themselves as possible culprits. Common sense suggests that if such a show-stopper bug was present in the original Anet firmware, thousands of users would report it.
Stepper motors are usually controlled by two signals (two cables): PULSE and DIR. The PULSE signal controls how many steps the motor needs to perform and the signal itself is normally a PWM or some other form of square wave. The DIR signal controls which direction the motor is supposed to spin (clockwise or counter-clockwise), and the signal itself is just a "high/low" voltage.
Now, electronics is not exactly my cup of tea, but I would suggest what is happening is that the DIR signal of the broken output is stuck on either the high or low voltage (you can test this easily with a tester).
If I am right, the likely culprit is either a dry joint (so a joint that does not let electricity pass and keep the DIR signal in its low state), or a short (so a place where voltage at "high" level is allowed to get onto the cable carrying the DIR signal). These kind of problems are typically related to poor soldering of the connectors, or to bridges between the pins of chips. You can visually inspect your board for such problems.
Another possible culprit is obviously the driver for the stepper motor itself. |
Is a 3-D printer made from 3 CD Drives practically somewhat decent, being DIY and less expensive? | I would guess that a printer made in the following way would be both poor quality, and annoyingly frustrating, as well as requiring constant tinkering/re-adjustment. Also, if the chassis of the CD/DVD drive is incorporated into the design (as below) then the print volume is rather small, given the inherent limited movement of a CD/DVD mechanism.
If the steppers are used without the CD/DVD chassis then it might be possible to increase the print volume but then you would need to spend extra on the rods and support structure for the X gantry, the Y-axis print bed, and the Z-axis movement. If you do that, then the steppers from the CD/DVD drive probably would not have sufficient torque to move the additional weight - by incorporating the CD/DVD chassis the inertia of the movement has been kept to an acceptable minimum.
By using the CD/DVD drive's stepper motors you are only really saving the cost of buying three or four actual, more powerful and useful, stepper motors (as well as the cost of the additional rods and support).
That said, it could be quite amusing to make, and show off, and also provide some satisfaction if you do manage to print a tiny frog, parts for another printer, or whatever, with it. However, I wouldn't expect it to print anything to any great accuracy/tolerance/precision/etc., but it would maybe give you something unusual to talk about at dinner parties.
An example
There is this (IMHO unjustifiably1) popular (i.e. well linked-to) Instructables guide: EWaste 60$ 3DPrinter, which describes making a 3D printer from old desktop computer parts2.
$ 3DPrinter"> 3DPrinter" title="EWaste 60$ 3DPrinter">
According to E-waste printer looks nice, prints really, really small, it has an awesome print volume of 37 mm x 37 mm x 18 mm.
Apparently, all you need is to salvage:
2 DVD drives (Matsushita stepper datasheet)
1 floppy disk drive (ensure it has steppers and not simple d.c. motors)
1 PC power supply
Then purchase these standard 3D printing components:
RAMPS & Arduino Mega or RepRap Gen6/7 - Capable of running Marlin/Sprinter frimware
Nema 17 stepper motor for the extruder - Either this, or better still something from RepRap Wiki - Nema 17, i.e. Kysan 1124090/42BYGH4803, Rattm 17HS8401, or Wantai 42BYGHW609.
MK7/MK8-type direct drive gear for extruder
PTFE tubing
Hotend (throat, heaterblock, nozzle)
Heater
Thermistor
Cables, female connectors, heat-shrink tube.
To make the frame, you need a 325 mm x 362 mm, 5 mm thick acrylic sheet, and use this template (missing files):
or this one (cnc-calisma-yalniz.dwg):
You will also need to 3D print these parts (the links to which have died):
Extruder idle
Extruder body
Hot end holder
Once you've gathered all of the parts required, you can then try to work through the incomplete assembly steps of the Instructables guide.
Other links
A very similar printer also made from an old DVD drive, Instructables: Curiosity 80\$ EWaste Educational 3D Printer. See also An E-waste 3D printer for every child?
A very complete, and IMHO, a much more doable E-waste printer, Instructables: Complete Newbie Step by Step, 3D Printer With All Parts Lists
Other Instructables, that I've not really looked into:
Super Cheap 3D Printer From CD-Rom Drives
Cherry- 60€ 3D-Printer
Poor Man's 3D Printer
Chimera: \$60 DLP High-Res 3D Printer
3d Printer for Less Than \$100 USD!!!
A Low Cost 3D Printer With Basic Tools
Thingiverse: \$65 3D printer made from recycled electronic waste
Footnotes
1 Most, if not all, of the links for the printer above are dead (this variant, mentioned above in Other links, is much more complete). However, with a bit of knowledge, and common sense, it should be possible to work through those omissions:
Marlin software - easy enough to find on Github
The frame laser cut - the original file is missing but an alternative is still available
The 3D printed parts for the extruder - as the links have died, you'll either need to find reasonable facsimiles on Thingiverse, which shouldn't be too hard to find, or buy them from cheap Chinese suppliers:
Extruder idle
Extruder body
Hot end holder
2 Funnily enough, whilst searching around looking for information to fill in the gaps in the above answer, I found this question on 3DP.SE: Missing print steps in e-waste 3d printer |
German RepRep Neo can't heat the extruder | first, check the breakers
pic source
secondary stuff
please see a list of item to check, that could point you to the source:
heater cable cut/melted/loose => the best way will be to check the resistance (it shall be around 3.3 Ohms) from the heater cable terminals on the mainboard, if that fails it could be a wire on heater itself.
with the heating switch on - measure the voltage on terminals - shall be 12V, if not - that could suggest a mainboard failure or mosfet failure (in case of mosfet you could measure if there is an input signal given on the middle pin)
there also could be a breaker that was engaged due to short circuit on the wires (the main board layout is not known to me and it is not clear form manual I found online) |
CR-10 randomly pauses for a few seconds | Edit: The z-hop problem has been fixed in Cura 4.2.
This is a known issue with Cura 4.1 when z-hop is enabled.
If you touch the z-axis motor frame while it is apparently stationary, you may feel it is actually moving.
The solution is to set a value (I used something like 250 in conjunction with an Ender 3) for the "Maximum Z Speed".
First you need to get the setting to be visible, so go to the "Settings" menu and choose "Configure setting visibility...":
Then in the "Print settings" panel:
The full story is available on GitHub at [4.1 - current master branch] Z feed rates #5753. |
Must I start over if I change a dimension in Fusion 360 | If you enabled the history, you can easily go back in time and change the dimension in the sketch and then go back where you were. It would be even more elegant if you do not use fixed valued dimensions in the sketch, you can use parameters you define yourself and assign them to certain dimensions to create parametric designs. These values can be changed at any time to see your final design adapt to those changed parameters. |
Use inkjet cartridge to color filiment? | I don't think it makes a lot of sense - you don't need that kind of resolution, and getting a sufficient amount of ink that way to coat the filament would be hard. If you're going to be switching colors rapidly, you'd need a long purge between colors anyway. I also doubt the type of ink is suitable for sticking to filament materials.
If you really want an automated filament coloring system, I would do it with Sharpies and actuators to move individual ones on/off of the filament as it passes through. Coloring PLA with Sharpies prior to printing is a known-working technique, and there are even models available on Thingiverse for holders to keep them in place while the filament runs through. Designing the actuators to switch individual ones on/off, and the firmware controls for them, would be the natural next step.
Here are some examples I did with manual coloring of natural translucent PLA (from left to right: uncolored, silver Sharpie, and red Sharpie):
I didn't color a long enough segment of filament or properly purge for any of them, which is why the coloring is inconsistent/incomplete. But the technique definitely works. |
Poor first layer bonding and bridging issues with Prima PETG | Those are fairly common issues and you should be able to tweak your way into good prints.
First layer perimeter bonding: Slow down first layer to around 15mm/s with fan off to address that bonding issue.
Gloopy blobs: To address the gloopy blobs, slow down to about 40mm/s or even less, and be sure to use wiping...also, maybe increase your retraction length.
Bridging: Use full fan for better bridging...note that bridging PETG is just harder than many other filaments, but it can be done. The reference below includes some more notes on bridging PETG successfully.
Ideal settings will vary based on your printer, your environment, and the characteristics of your specific filament. PETG can take some tweaking so don't be alarmed by the gloopy blobs, excessive stringing, and poor bridging, just plan to spend some time tweaking settings until you find a good balance.
Here is a fairly good reference for further tweaking with PETG.
If you'd like more help analyzing your print settings here, consider posting your current settings, your printer model, your ambient temperature, and pictures.
I hope this helps! :-) |
Getting a Cura Raft to stick to the object more firmly (for ABS) | You should reduce the air gap option called "Raft Air Gap". Printing ABS optimally requires an enclosure of the printer, wind and draft cause temperature changes which could lead to layer separation. |
Is there a way to configure printer extruder to go all way up when printing finishes in Ender 3? | The most safe way to move the printer up to the maximum print height is to use a concept known as "keywords" (sort of constants that are filled by the correct value when slicing) in Ultimaker Cura, certainly if you have multiple printers with different print area sizes.
To use these keywords, just add these in between curly braces and insert them into your slicer "End G-code" script. These keywords will be substituted with actual numbers from the printer settings or slicing configuration parameters. In this case we need to use the maximum print height which is specified by the keyword machine_height. This keyword takes its value from the printer settings, set for the printer in the graphical user interface of the printer settings, see image below (this is a configuration of an Ultimaker 3 Extended, it also shows the Start G-code and End G-code which you can tweak yourself, as seen by the additional G-code line G0 F10000 Z{machine_height} that has been added for this demonstration).
E.g. similar to this answer, you could solve this with a keyword. Now when you slice for a certain printer (e.g. with the printer settings of the image above), the correct value will be filled in automatically when slicing the print object as can be seen from this snippet of G-code:
...
G91 ;Relative movement
G0 F15000 X8.0 Z0.5 E-4.5 ;Wiping+material retraction
G0 F10000 Z1.5 E4.5 ;Compensation for the retraction
G90 ;Disable relative movement
G0 F10000 Z300 ; <------------ note to see {machine_height} be resolved to 300 mm
...
This is specifically for Ultimaker Cura. Do note that e.g. Slic3r even takes the keyword concept further by allowing arithmetic and logic, similar as you could do in programming languages! |
Anet A8 stops printing | Special characters like Ä Ö or Ü in the stl-filename resulted in Ultimaker Cura creating a comment of the filename in the g-code that read like
;MESH:Loki_hörner_v2.stl
This apparently could not be parsed by the Anet A8, leading to an error and halt. |
CR-10S / Ender5+ LCD Touchscreen Firmware Editing | I've been digging into the sources and from what I understand, it is not very easy to change the menus, you should possess some programming skills to change it. It appears that the screen is operating on its own firmware and the board is running a special fork from Marlin.
The screen is identified in code by constant CREALITY_DWIN. It appears that the screen receives/uses precreated images (from this download you find these screen captures). The code references the bitmaps by a number and a base number (ExchangePageBase). E.g. codeline:
RTS_SndData(ExchangePageBase + 78, ExchangepageAddr);
sends this image:
The specific code is found in this specific fork of Marlin in files Creality_DWIN.cpp and Creality_DWIN.h.
In order to make your own menu item, you need to add code to send new bitmaps and retrieve the touched position. |
What does the trimpot on my Switching Power Supply do? | No doubt it's just a final tuning potentiometer. Even on the pictures you linked it's described as V adj which stands for voltage adjustment.
It's a way to tune your power supply's output as it can vary depending on temperature/humidity/wall-plug voltage/etc.
It's usually set properly and doesn't need to be touched. But you can connect a multimeter to check if your power supply gives the voltage you need.
If you are not familiar with the subject but still want to do it yourself, it's good to set your multimeter to the highest available range and make sure that AC/DC is properly chosen. Now you can measure voltage. You can set the range closer to the expected values then. Usually multimeters have a range around 20 or 30V DC which is propbably what you expect from your power supply. In such a range you should see something like 12.000. If it varies from 12.000 you can then precisely adjust it to get as close as possible to this value. But watch out... cheap power supplies can cheat you. When the are have a load on the output (your 3D printer for example) they can reduce voltage. |
Reason behind geometry of heater blocks? | A heater block has its shape designed simply by the necessity of the needs and the ease to manufacture them. Functionally, a heater block serves as:
a structural component holding the following components in a well-known position to one another:
heatbreak
nozzle
heater cartridge
thermosensor
a transmission medium of heat energy from the heater cartridge to the thermosensor and filament path.
this dictates the use of high thermal conductive metals
a thermal energy storage to equalize the heating pattern of the heater cartridge.
While this dictates the internal geometry of the block, it does not say anything about the external geometry. This is chosen entirely because of manufacturing, which strongly prefers square items in a vise with stop positions to allow repeatable machining.
While other heater designs are existant, for example wrapping a heater wire around the meltzone, the use of a machined structural element that houses bought components saves a lot of time in assembly Quality Control and subsequent repairs, as each component (heater, thermosensor, block) can be rejected or replaced on its own. This makes the machine all in all more serviceable. |
My first 3D printing - I need some advice or tips | I see this:
I had to make a small prototype and it requires an enclosure
and this:
yes, it is hollow inside
How do you intend to get your item inside the result? This part really needs to be two pieces with two separate prints. Basically, a box and the lid, where you leave space for screws, include tabs, or plan for glue connections.
Finish that alteration, and the support issue suddenly becomes much easier. Most slicers have options to generate support for you, including limiting support to spaces between the model and build plate. Now you can rotate the angle at the which the part is printed in order to minimize your support needs, or so that most of the connection points for the support will not be visible in the finished product. |
Z-Axis zero/home position is higher than the actual print starting position | Check the Z-drive for any component looseness. Look at belts, gears, anything with screws. Wiggle things mercilessly checking for play.
At the start of a normal print run, the the print head typically rises up very high as the head warms up (depends on software) and then lowers to print. If your homing paper test happened with the head near the limit switch, then the difference between those two use cases is the Z-distance traveled to get to the same place. You have eliminated software and electrical considerations, which leaves mechanical considerations. A slipping gear or belt might contribute to this odd behavior you describe. |
Vertical 5 mm diameter hole comes out fine, but diagonal 3 mm holes keep collapsing | A member of the public on Stack Exchange's forum gave me the answer:
"The problem is not the hole 'collapsing' in and of itself. The problem is the material.
Versatile Plastic is a layered powder fused together with a laser in multiple layers, so the unused power has to come out from the various holes in the model once printing is completed. However, these layers are also very thin and compact. Therefore, if you make a small enough hole, the powder simply won't flow through it and it becomes stuck. Due to the small dimensions you listed (of said hole) it's gonna be difficult to free it due to the sheer compressing forces involved. When working with such fine details Versatile Plastic is not the most indicated material.
The only correction you can make to rectify the problem is changing material. Fine Detail Plastic would be a good choice for a new test, although it is not cheap compared to Versatile, is certainly cheaper than metals.
Fine Detail Plastic should provide you with a good result if you feel like trying it out."
ShapeWays technical support told me basically the same thing, and added that ordering the shape in black might also exacerbate the problem:
He said that when a model has holes in it, a human actually pokes the holes to get residual material out if possible. Then he adds: "The last issue would be that Black indeed causes additional issues. If the production team isn't able to clean the model properly, or didn't do their work right, this could become and issue when we dye your model. All Versatile Plastic is printed in White, when selecting a colored finish such as black, we dye the model using a bath of regular RIT DYE. If the hole still has trapped powder, the bath will make the loose powder wet and make it become sticky, in combination with the dye this causes it to become chunky on the inside."
TL;DR: I can try to fix it by using Fine Detail Plastic, or I could try ordering in white and then painting it black myself to avoid gunking up the holes (the insides of the holes don't need to be painted black). |
How much work would be converting Prusa firmware/software for CNC use? | Disclaimer
Questions about other machines is still in kind of a grey area right now 06/2016 and your question is, in my opinion, a bit too broad. However, I think it's a great topic to perhaps help direct the scope of this community.
The lowdown
3D printers, CNC Mills, CNC Lathes, CNC Routers, and Lasers are all very different! There are certainly areas where each of these may overlap, but the methodology is very different overall.
Software is not always interchangeable across machines (even within the same machine type) due to hardware requirements/communication.
Hardware is not always interchangeable across machines (even within the same machine type) due to design/scope of the purpose of the machine.
Things to consider
(In a nut-shell)
3D Printers
Hardware
Minimal speed/torque requirements compared to subtractive machine tools.
Good designs focus on temperature control via enclosures and/or electronics.
(Typically) uses heat block/nozzle/stepper motor to control material size/flow.
Software
Emphasis on "plug-n-play" UI/UX
Conceptually easier to generate tool paths. STL's provide outlines and software fills in the blanks like a coloring book.
Focus is on understanding material properties and temperature variability.
Common Variability
Material quality/shape
Environment temperature
CNC Mills/Routers/Lathes
Hardware
Maximum speed/torque requirements.
Good designs focus on rigid designs and handling harmonics.
Tighter tolerance components to ensure mechanical repeatability.
Relies on cutting tool size/shape to control material size/flow.
Software
Requires more manual input (typically) to account for where its tool is located. The mathematics heavily depend on accurate dimensions for the cutting tools, otherwise you could damage your part or the machine.
Good software allows many different "canned" tool paths for efficiency, tool types, and achieving desired surface finish.
Focus is on variability in cutting tool and speeds/feeds (as recommended by cutting tool suppliers for materials)
Common Variability
Material shape/hardness
Cutting tool shape/hardness
Cutting tool path
Lasers
Hardware
Minimal speed/torque requirements.
Good designs focus on consistent beam quality and spot focus, which is relative to constant power.
Uses focusing lens (sets spot size) to control material size.
Software
Emphasis on "plug-n-play" UI/UX and interoperability.
Dimensions are easier to achieve as less variability in the process compared to 3D printing/machining.
Focus is on laser power (typically for material type and depth).
Common Variability
Laser type
Spot size
Power supply
Summary
Overall there are many, very different variables to consider between these technologies. I only focused on variables you might see out of a hobbyist-style machine and if you've operated any of these you'll know that there are many more variables that pop up for any of these machines.
So, do not expect such a plug-n-play solution as each machine requires quality construction of its hardware, the ability to handle the variability of the process in its software, and, above all, an operator that understands the correlation and balance of these components.
All of that being said, there are some machines that seem to be tailored to this such as the machine by Diyouware and ZMorph (No affiliation, just examples). However, notice that they have created their own software to meet a lot of these communication requirements.
Update
I forgot to mention the fact that a kink in creating a interchangeable machine is the control interface. The controller converts the "software speak" into an easily parsed series of functions (typically G-Code) for the small computer to process its predetermined hardware processes. Ie, The slicer or CAM software determines that a layer of a circle be 3D printed, milled, routered, or lasered, so the controller should G02I2 which could parse to (For all intents and purposes in javascript, not a practical language) CWCircularInterpolation(2,null,null,null,null,null) and run as:
function CWCircularInterpolation(i,j,k,x,y,z){
//Some code to take current position and command to create a canned circle path
}
The point is that the software needs to handle the conditions and constraints of a different machining process and provide a well-equipped machine with the right commands. There are a lot of different things to consider in attempting to combine these machining techniques into a single machine and get quality results. |
My print failed and looks charred | You have more than one problem going on. As for the print lifting up, that could be for a multitude of reasons. Clearly better bed adhesion is required. It also appears the printer stopped printing at one layer. Now for the charred part, I think it could've been caused by the nozzle staying in one area for too long (possibly when the printer stopped printing.). This causes the plastic touching the nozzle to overheat and burn up. The charred section can usually be pulled off pretty easily. However, since it definitely appears you have more than one issue here you should pursue some research (perhaps other questions on the site) on the matter.
Hope this helps! |
Different lengths of filament is extruded with different temperatures | Obviously, your extrusion process is troubled by a lot of pressure. This can be seen from the extensive experiment you conducted with PLA extrusion at different temperatures. Please do note that 230 °C is considered pretty high for PLA! Usually it should be in the range of 185 - 205 °C:
In general, PLA filament settings have an optimal printing PLA
temperature range from about 185C to about 205C. If you’re using
1.75mm as opposed to thicker 2.85mm (or 3.00mm) your optimal print will be closer to the lower end of this PLA filament temperature
range.
The temperature dependency of filament diameter is explained that small diameter filament warms up way faster in the heating zone of the hotend than large diameter filament as the heat travels less far to the filament core. Basically, with 1.75 mm filament you should be able to print at 195 °C. The pressure that the filament exerts on the hotend and extruder is clearly too much and leads to skipped steps.
It is strongly discouraged to create a function of steps per millimeter (or an over-extrusion by specifying a more than 100% flow modifier). This is a mechanical issue that needs to be fixed by addressing the hardware problem. Usually this is done by:
fixing the extruder;
is it skipping steps?
does the filament tension get too high that it skips back pass the extruder gear?
does increase the stepper current work?
fixing the Bowden tube;
is it clean?
is there too much friction?
are there kinks?
fixing the hotend;
is the temperature that is reported the correct one? (thermistor problem?)
is the heat conducting properly to the nozzle?
is there a tolerance issue in the hotend/heatbreak?
is the coldend properly cooled?
A few of these you already explored, others you have not. Unfortunately, you have to do a little more troubleshooting the get to the bottom of the actual problem that is causing this pressure preventing the extruder to extrude the proper commanded length. |
How to upload firmware to reprap printer? | There are mainly three reasons for that:
Arduino studio settings should be:
Board: Mega 2560 and
Programmer: AVR ISP
and valid COM port, please see below:
Please close all slicer's instances (Cura, Slic3r, Repetiter) and host servers and other software that communicate with the printer as they lock the COM port;
Please check that the appropriate usb2serial drivers are installed and working - the best way is to start the serial monitor from the Arduino Studio Tools menu and see if there are any. |
The BLTouch is hitting the bed on the double-probing | First, make sure to check if stow, deploy and the trigger are working correctly.
Second, check the pins files to make sure you put it in the correct pins. Black and White probe pin might need to go to Z-min or probe pin depending on. Make sure to check that.
Third, add "BLTOUCH delay". It might be triggering too slow or too fast for the next one to react. So after the first trigger, there should be a time for it to "re-setup" for the second. But if there is no time to do that then it won't trigger.
To add examples: If you have SKR 1.4 Turbo, then use BLTouch probe pins (black and white) on the board. IT will NOT recognize. You have to use Z-min endstop pins. Reason for this?:
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
If this has been used, Z-min probe will use Z-min endstop pin instead of Z-min probe. |
M3D filament not extruding well (anymore) | Suggested remedies for 3-D printers which are not extruding required amount of filament:
First, check the temperature of the extruder. Try 220-225C to see if that improves the problem.
The second step is to increase the flow of the filament (increase mm/sec) for extruder speed.
A final step is to increase distance between extruder and base-plate. If the extruder is too close to the baseplate, there may not be enough space for the filament to begin the printing process.
Another possible source of lack of material extrusion is a clogged extruder. To solve this problem:
Retract filament using jog control in software
Heat extruder 20-30 degrees Celsius above normal extrusion temperature
Disassemble Extruder, use small thin wire to remove blockage (guitar wire as suggested below) |
Issue with the new heating cartridge of my 3D printer | If it is 40 W then it shouldn't matter what length it is. Note that the heater cartridge just contains a Nickel-Chrome wire-resistor (see image below for the construction), this resistor gives its heat to the metallic shell, the length of that shell shouldn't matter, it usually contains heat free/colder zones at the tip and root. Even if it is a 30 W heater cartridge it should be able to get to temperature, it would just take longer.
If it is a 24 V, 40 W cartridge, operating at 12 V, then the effective power would be $40[V] \times \frac{12[V]^2}{24[V]^2}=10 [W]$. This might be too low to reach the temperature. It is best to check the resistance of the heater element with a multitester; it should be about 4 Ω for a 12 V heater cartridge and about 14 Ω for a 24 V heater cartridge. |
Editing arc in Marlin for 3d printing | Since your team is designing a printer, you'll have to do some basic calculations to figure out your x and y axis steps per millimeter and then set them in your firmware.
For a decent primer in the basic idea, this video is a good start. For another decent getting started summary check this blog post
Also, since you're using Marlin, become very familiar with the Marlin Firmware and how to configure it. The setting you want to change exists in the configuration.h file. Documentation is included in the file, but you can find good information here in the Marlin Configuration instructions within the Marlin Firmware Github repo.
I hope this helps! :-) |
Do I need linear rails on a corexy printer's z-axis while already having quality lead screws at hand? | Using rails for Z is overkill. They are stiffer than smooth rods, but for Z axis that's not needed.
Using only the leadscrew may be enough, especially in designs with three of them, but if you have only two you may be able to still twist the bed around the Z axis.
Also, the bed would be supported only in the center by the "nut" on the leadscrew. This means that the bed could wiggle around the X axis (the axis along the line between the two nuts).
Some additional support for the bed, or using two "nuts" per leadscrew, properly spaced apart, is usually needed.
This in general. Since you mention now that the bed is 220x220 mm, maybe you can get away with the two leadscrews alone, especially if you can find "long" leadscrew nuts, so that the wiggling is not excessive. |
laser is engraving the negative space | M42 command is an immediate command. This means that it will run before the move GCode commands finish. This is exactly what I was facing.
This video has the walk-through of solving the issue:
Here is the relevant PDF it talks about: The 2.8 watt, $100 Laser
Upgrade for MPCNC.
Here is the relevant section on page 7 of the PDF:
The laser driver requires a 5 volt TTL input control signal. The
Marlin fan control Mcodes (M106 and M107) will be used to
control the laser .Unfortunately, the Ramps fan output (D9) is a
12 volt signal so we can’t use it. We'll need a quick firmware edit
to remap the fan output from pin D9 (12v) to pin 44(5v).
Make a backup copy of your Marlin firmware folder first. Open
the pins_RAMPS_13.h file in your Marlin firmware folder with a
text editor (Wordpad). Search for the line where the fan pin is
assigned and change it from pin 9 to pin 44.
Save the changes and flash the revised firmware back onto your
Mega board. |
Designing/Printing objects with sized holes | The reason holes come out undersized is generally the slicer, so calibrating the printer itself cannot solve the issue (without making other things worse). The output of the printer is exactly what it should be, given the G-code provided to it. It's just that the G-code does not represent the hole diameter correctly.
It would be best to simply account for the deviation in your design, or simply drill out undersized holes to the correct diameter. |
Cura Sequential Printing | If the height of the object is larger than the free space between the gantry and the top of the first printed object, you will not be able to slice the object. The maximum printing height will reduce to the maximum available distance between the gantry rods and nozzle.
Note that the correct Gantry Height needs to be set in the printer properties. For instance, the UM3 I use has 60 mm free space between the gantry and the nozzle:
If you have a smaller height specified, or a taller print object os depicted in the image below, you will not be able to slice the prints (note that a 100 x100 x100 mm is scaled to 20 x20 x70 mm prints, which exceed the 60 mm):
When properly scaled below the 60 mm, i.e. to 20 x20 x50 mm print objects, you'll see that you are able to slice the objects:
Slice preview: |
Are there any non-static (ESD safe) materials to print with? | Yes there are ESD Compatible filament materials. One manufacturer is 3dxtech.
There are also filament materials that are even more conductive than that.
Pretty much all rigid filaments can "take screws". You can either have a hole that and let the screw self thread or tap the threads into the hole. A better option is often to press a threaded insert into a hole.
The bigger question is why do you need this? Are you trying to prevent ESD. If so, why, are there ESD sensitive components? If so, just make sure proper spacing is provided. If you are trying to manage electrical emissions/susceptibility, there might be better solutions such as a coating. |
What can cause Z height loss in the first few layers? | Do you have any “slope” on the right side (non motor) of the gantry? I’ve noticed that my gantry will settle on the right side and lag behind the motor driven - ever so slightly - when it starts to drive up. It will, after that first lag, move fine for the rest of the time. Z axis travel seems barely affected but all my prints are consistently about .5 mm short. |
Need sanity check debugging non-functional extruder | The extruder motor will not turn unless the hotend is at a certain minimum temperature. This is a safety feature to prevent the extruder from grinding through the filament with a cold hotend. You can use the M302 command to control this behavior. |
How to properly read dimensions for a 3D printer? | Having the dimensions of your 3D printer ordered in Length x Width x Height is a common way, but nobody actually decided it.
I think it has something to do with the 3rd dimension being the "new" dimension for printing things, that's why it's appended at the end.
Additionally, the first axis on a 2D-coordinate system usually is the horizontal one, so writing Length x Width makes sense for me.
If you are unsure you can always test your printer (if you have one) by writing your own G-Code that moves the printhead on a defined axis. |
What do you recommend for removing prints from Monoprice Maker Select bed? | When all other things have failed, I chuck the build plate in the freezer for half an hour.
The glassplate and the plastic changes size differently when changing temperature and 'pop' it just snaps off easily. |
What should I think about if I want to design something modular? | All printers are designed with an idea of WYSIWYG for sure. Depending on:
printer - type/quality/settings/configuration/assembly precission
filament - type/quality/shrinkage
user skills - manual/using app proficiency
model complexity
environment conditions and so on
you can get different results.
I venture to say users know their printers (after some time and by trials and errors) so they know how to manage dimensions to compensate all above so you will get this knowledge too.
Mathematical formula can describe shrinkage of the material, all other elements are very hard to describe (mathematically) in a general way.
Of course someone can simplify it and say: more money you spend better effects you'll get. It's sometimes true ;)
So all your modular things will be better and better if you will increase (what is to be increased) in above points especially "user skills".
Is engineering paramount? It depends of whay you gonna create. If your modular things have to lock itself, have to have threads, screws and such stuff then this is engineering. Is it the most important part of the design? Not necessarily.
I would say 3D printing moved engineering to next level. I'm talking about this or this. Is it still art or engineering? :)
This is my receipt:
think > imagine > design > rethink > redesign > give it a try > get back to thinking
good luck |
How should I power these stepper motors | If the motors are in parallel, then setting it at 0.4V means each motor will only get a quarter of the current a single motor would get at 0.8V. If you set it to 0.8V each motor will get half. I think 0.8V (same as for the other motors) would be an appropriate setting. Stepper drivers are constant-current, not constant-voltage.
Are the steps/mm for your Z-axis correct? Perhaps it's just trying to move too quickly. |
Y-axis layer shifts with recent Marlin on Ender 3 | Buried in a bug tracker entry for a seemingly unrelated issue, I found what seems to be the solution:
@johanmga, I've discovered the velocity jumps here come from using "classic jerk" computations, and happen whether or not s-curve acceleration is enabled.
Try uncommenting //#define JUNCTION_DEVIATION in Configuration_adv.h; that will disable classic jerk and use the junction deviation math instead.
Also for reference, issue #12403 is actively tracking the layer shift issue (please comment there too if you have more information on problems/solutions), and #12540 is has more information on classic jerk vs. junction deviation.
https://github.com/MarlinFirmware/Marlin/issues/12491#issuecomment-443464603
It seems that the "classic jerk" code no longer works and produces erroneous motion to the steppers under some conditions (dependent on G-code contents), whereas the Ender 3 default configuration file is still using it.
With the default JUNCTION_DEVIATION_MM of 0.02, things worked right away, but printing was so slow that I could plausibly attribute it working just to the slowness. But increasing it up to 0.1 via the menus got the speed closer to what I'm used to, and it's still printing with no layer shifts.
I've posted my results in the tracker in hopes that they'll lead to discovery of the root cause: https://github.com/MarlinFirmware/Marlin/issues/12403#issuecomment-519305409
Another issue on the tracker seems to have more detail:
https://github.com/MarlinFirmware/Marlin/issues/12540#issuecomment-442793326 |
Stop and continue 3D printing | If you enable M413 in Marlin firmware, the printer will write a resume printing file to SD card e.g. every layer.
From M413 - Power-loss Recovery documentation I quote:
Enable or disable the Power-loss Recovery feature. When this feature is enabled, the state of the current print job (SD card only) will be saved to a file on the SD card. If the machine crashes or a power outage occurs, the firmware will present an option to Resume the interrupted print job. In Marlin 2.0 the POWER_LOSS_RECOVERY option must be enabled.
This feature operates without a power-loss detection circuit by writing to the recovery file periodically (e.g., once per layer), or if a POWER_LOSS_PIN is configured then it will write the recovery info only when a power-loss is detected. The latter option is preferred, since constant writing to the SD card can shorten its life, and the print will be resumed where it was interrupted rather than repeating the last layer. (Future implementations may allow use of the EEPROM or the on-board SD card.)
This means if you cut the power you can resume the print layer, the only problem is that the part must remain attached to the plate, if it comes loose it is hard to resume printing. This feature is now commonly found on printers these days.
The regular pause and resume functionality of the printer will not work when the power is cut over night, i.e. no recovery file is written in such a case. |
Filament Length too short for extruder to push filament | The extruder can't push anymore when the filament is past the extruder gear. If your filament has run out to that point, the print will not halt but print without a filament, meaning that the print will fail. You need to pause the print in time and then put fresh filament into the printer.
If the end of the filament is cut flat at the end and the new one is flat too, the new filament can push the old one out to the nozzle, reducing the waste to a minimum, if you can live without retraction for the amount of length that has to be used up. You could friction weld the two parts together to alleviate this. |
is PLA gasoline, diesel or chemical resistant? | I have used both ABS and PLA for diesel gas caps and oil plugs. As well have made a gasoline funnel out of both. Both have done well for me.
I have attach a link to a plastics resistance chart if it is any help. Unfortunately it does not show testing for ABS for all.
I prefer the ABS only do to the fact some items I have made sit in the desert sun.
Plastic resistance chart |
How to change "home" settings on Ender 3 | This isn't a matter of settings but physical adjustment (the endstop switches). Having the head home slightly off the bed in the X and/or Y direction is a good thing, because it means the Z homing can't crash into the bed if the bed height is misadjusted. On my Ender 3, the X axis homes slightly into the bed, but the Y homes such that the nozzle tip is in front of the bed. Note that normally you don't try to print at X=0 or Y=0 anyway.
As for the Z homing, you have to adjust the bed height ("bed leveling") via the 4 wheels under the corners of the bed to bring it to the right height. If you can't get it below the nozzle with the wheels all the way tightened, your Z endstop switch must be installed incorrectly. The Ender 3's Z endstop bracket is supposed to fit against the corner of the aluminum extrusion just below it so that it doesn't need adjustment, but it's possible to mount it incorrectly higher. This is a bad idea because if it loosens it can move. It might also be possible to incorrectly install it lower, in which case it would be misaligned because the machine screws couldn't be tightened down all the way. This is also a bad idea. Make sure it's in the right place.
As for actual bed height adjustment/leveling, there are lots of good guides to that and I won't try to reproduce/improve on them here. The "sheet of paper" method is very good. |
How to utilize/calibrate print fans for PLA? | Everybody's combination of fan hardware and print settings is different. Unless someone else has the exact same printer and slicer profiles as you, there's no way to really say anything like "use X% for PLA" or whatever. For practical purposes, you just empirically figure it out with test prints based on a few simple rules of thumb:
Use lots of cooling for PLA, moderate cooling for PETG, and minimal cooling for ABS. (Note that sometimes ABS does benefit from gentle airflow, and PLA shouldn't necessarily always just be blasted at max power.)
Use less cooling on big prints where each layer takes a long time, more cooling on small prints where each layer is very quick.
Axial / box fan? You'll probably want to run it at full power. Radial / squirrel cage blower? You may want to run lower power.
Overhangs curling up or sagging? More airflow may be needed. (Lower layer heights also help enormously.)
Hot end temp sagging when the fan kicks on? Try less airflow. (Or insulate your hot block better.)
Weak layer bonding? Try less airflow. (Or raise your hot end temp.)
Small, fast prints getting mushy or corners "pulling in"? You need more airflow. (Or lower heatbed temps.)
Print warping / corners lifting off the bed? Try less airflow, particularly on the lowest few layers. (Or higher heatbed temps, or a better adhesion layer, or less nozzle/bed gap for the first layer, or any other approach.)
Fan too noisy? Try less airflow. (Or get a better fan.)
Filament stringing during travel moves? Try less airflow pointed directly at the nozzle. (Or tune your retraction settings better, or get the moisture out of your filament, or lower hot end temp.) |
Creality CR-10 extruder clicking and/or nozzle clogging | Turns out the filament was the problem, I tried printing a model with a high quality sample PLA filament I had and it printed perfectly; one of the cleanest prints I've had. Never skimp on filament. |
How to set Home Offsets and Manual Home definitions in Marlin correctly? | Normally you wouldn't use the MANUAL_xyz_HOME_POS at all.
Home your machine.
Use a caliper or ruler to measure the distance between the nozzle and the edges of the print bed in both the X and Y direction.
If the nozzle was off the bed in both directions, input these measurements as negative X_MIN_POS and Y_MIN_POS values.
If it was over the bed in either of those directions, you'll need to input them as positive positions.
That should result in your nozzle to be exactly on the edge of the bed after a
G28 X Y
G1 X0 Y0
movement. |
How to interrupt long command with G-code? | 3D Printers are pretty basic when it comes to g-code. There is no cycle start or cycle pause function on them. There is also no g-code command to interrupt the previous command. To get it to a halt you could turn it off. Or if the printer's firmware is configured to do so, you can touch one of the limit switches to get it to stop its movements. |
Why do slicers have nozzle size settings? | I never thought about that!
I do know from experience that Cura uses nozzle sizes to sanity check your settings, warning you if you do something unreasonable. That is reason enough to include the feature for me. However, I did wonder what, if any, differenced this actually makes, so I tested it and here's my results:
I went through and tested it on the 3DVerkstan Face Mask. I compiled the same model in the same place in Cura, the only differences between the two being that I changed the nozzle size from 0.4 mm to 0.8 mm. I then ran the VS Code Diff Checker on the files as well as loaded the exported gcode back into Cura to compare and got some interesting results.
The estimated times and filament usages are very slightly different: 2689 seconds for 0.8 and 2698 seconds for 0.4, 6.18899 m for 0.8 and 6.18883 m for 0.4. This means something different is happening somewhere, but it's very similar to within a rounding error.
The brim is exactly the same for both. No differences whatsoever in the G-code.
When the model starts printing, everything in the gcode becomes different. This seems to be down to a few reasons: (note these photos were taken by exporting gcode then re-opening that gcode into Cura)
Differing layer start positions
Possibly a difference in line overlaps? On the 0.8 mm file, cura shows a larger gap between the brim and the part, and more overlap between the outer wall and inner walls when compared to the 0.4 mm file.
That's all the differences I can observe in this model. Every layer is different in the gocde, but it seems to be down to the two differences noted above. IMO, that's all inconsequential and you should be fine to change all the settings to how they should be for a larger nozzle and be just fine. Other than the warnings, nozzle sizes may be a holdover from a past version when they were more useful, or simply may have just seemed like a reasonable feature to put in at the time and no one really thought about it.
As far as changing nozzle size goes, I go to Preferences > Configure Cura > Printers > Machine Settings > Extruder 1 > Nozzle Size. If that option is not there, consider creating a new machine of a different type that's similar to what you have. I have an Anet-A8 but use the Prusa i3 printer type in Cura since that's most similar to what I have. |
Delta Kossel 3d Printer Heatsink issues | When assembling the hot end tip, make sure you screw in the extruder tip to the aluminum block first, then screw that assembly to the heat sink fins. On my Kossel, I did it the other way around, and had very poor results.
If the whole assembly is spinning, then the clamp screws are either too long and can't tighten properly, or the holes might be stripped, or they're just not tight.
And yes, any movement in the hot end can cause problems, since we're dealing with steps as small as .1 mm. |
ABS prints consistently splitting in the same place | Personally, I have dealt with this problem myself! I messed around with the slicer a little bit, and I found that if you make the print layer height 0.15 or 0.10 mm, it will be better. The image you attached looks as though the printer was splitting a step and only printing that part. I can't think of a reason why it would do that. I also can't find anything online, so I would just play with the print settings or change the layer height until it comes out how you want it. |
What is the life expectancy of the Kossel? | Much like your car, the number of miles, or the number of prints that you can get out of it is entirely up to how well you can maintain it.
A 3D Printer is a machine, and a machine needs general maintenance; if you see something starting to break - or get worn out - or anything abnormal, fix it.
I am sure that if you had something like a MakerBot, it would require less maintenance then a fully home built machine, but if you are building it from scratch, I am sure you don't mind.
I am still rocking a 3 year old home built MendalMax, and have both made some improvements, and had to make some repairs along the way - but it is still in damn good condition.
For a $600 investment, I can say you will get a few years out of it if you take proper care of it. By the time the end of its life comes (5+ years), I am sure there will be much better printers available for cheaper, and you will never look back :)
Tighten all your nuts and bolts
Keep it calibrated
Keep belts properly tensioned
Oil X, Y, and Z rods
Clean of any dust and scrap plastic (compressed air can?)
Clean hobbed bolt
Clean extruder
Ensure all electronic connections are secure
Check wires at points of movement for wear
!remindme 5years |
Still got poor printing quality after calibrating my Anycubic Predator | A few tenths of a millimeter are pretty common for 3D printed parts; these are related to the printer hardware. These inaccuracies can be exaggerated by over- or under-extrusion; e.g. if too much filament is extruded, it increases the outer dimensions (and decreases the inner dimensions of holes).
The images show some signs of over-extrusion, maybe a little too hot also. |
Setting custom x/y bed bounds for Anet A8/marlin | As you just flashed your own Marlin, you probably have the marlin.ino and its associated files in the Arduino IDE set for your Processor and board and know how to work with them to some degree. This is just the short version where to find what you need to change the bed size, if the marlin.ino is based on the marlinfw-release.
Changing "home"
In Configuration.h there should be a set of lines that reads akin to this:
// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define Z_MAX_POS 200
Usually it is faster to use Ctrl+F and then typing in X_MIN_POS and adding the hook in front of Search all Sketch Tabs and then moving through all the finds till the right one pops up. This not only brings you right to the lines you want to alter, but also covers up the bases in case the distribution you work with did put the movement limits into a different location like Configruration_adv.h.
Changing Bed Size
Alter these minimum positions and make sure that the Maximum positions (usually just after them) to fit the maximum of the bed.
If you reduced your bed size, you also might need to change X_BED_SIZE and Y_BED_SIZE, which (in the marlin.ino) is in the same Configuration.h - I found it to preceede the Travel limits:
// The size of the print bed
#define X_BED_SIZE 200
#define Y_BED_SIZE 200
Adjust these as needed to fit the new sizing.
Hint: Getting the Values for Adjusting
For finding the adjusted values, I have had good experiences using Repetier Host on Manual Control to move the nozzle (lifted 1mm to prevent any accidents) into the correct XY-position and taking this position as adjustments for the minimum positions. Finding your personal settings is a bit of a trial and error still, so take your time.
Finishing up
Now, recompile the marlin.ino (the checkmark in the top left) to check for errors and flash the new firmware it. |
Z offset in Marlin is not working recently | I have the same problem. You need to check your G-code to detect where's the problem.
Try comparing the G-code file with different values of the Z offset.
In my case it looks like this:
No offset
;LAYER_COUNT:107
;LAYER:0
M106 S255
G1 F300 Z0.84
G0 F6000 X124.645 Y78.208 Z0.84
;TYPE:SKIRT
G1 F300 Z0.44
G1 F1500 E0
With offset (comments made by Cura)
;LAYER_COUNT:107
;LAYER:0
M106 S255
G1 F300 Z2.06 ;adjusted by z offset
G92 Z0.84 ;consider this the original z before offset
G0 F6000 X119.093 Y42.498 Z0.84
;TYPE:SKIRT
G1 F300 Z0.44
I hope this helps. |
How does the home position work on a Prusa i3 RepRap Printer? | It works like you describe, but it does not move all axes at the same time. It first moves the X-axis, subtracting steps while the X endstop is not pressed. When the X-axis is is homed (the X-endstop is gets pressed) it repeats the procedure for the Y-axis and finally the Z-axis. |
Is "CoreXE" a thing, or is there a reason it's not? | Wow, Kevin O'Connor (of Klipper) just pointed me to a real CoreXYE design by Vlad Strateniuk called REXY, with video available:
There's an open Klipper issue about supporting it and apparently Marlin was already adapted to run on it. |
How to build the extruder motor holder for the Kossel Mini | Have a look at the image provided in this seller's part description. it probably says more than my words could (which would also only rely on images - your parts just looked like I saw them somewhere before).
3D printer parts right hand Bowden Extruder kit set no motor compact extruder aluminum alloy for |
Marlin Minimum X/Y Feedrate | What I could suggest here is:
set the acceleration to 1 instead 0 so we have M201 X1 Y1
use G1 Xdest Ydest F3 - feed rate is given as an integer |
In Fusion 360 how do I select an entire 3D object, not just its sides or faces? | Selecting the body in the browser will select the entire body. Clicking on the body in the viewer will only get you faces or edges.
A long click (click and hold) on the model will give you options on what to select. You can choose a face or body under "Depth" or choose a body or feature under "Parents." |
Plug sdramps module and Anet A8 LCD together into RAMPS smart adapter | The Anet A8 uses a simple LCD with 5 buttons, the problem is that the buttons do not use digital pin signals, instead analog pins are used. Based on the pressed button, with corresponding resistance the firmware knows which button is pressed. The RAMPS smart adapter uses digital pins, so the Anet LCD is not compatible with the smart adapter, you may wan't to opt for a cheap Chinese 12864 LCD smart controller, they are about $8, they are compatible.
The topic Connecting (Anet A8) 2004 display to MKS GEN L shows you to hook up the Anet A8 LCD to a RAMPS board. You do not use the smart adapter, instead you use AUX2. You only have to change 2 wires (interchange them on AUX2) and you will be able to use the display. The reason you cannot use the smart adapter is that the 5 button display requires analog pins, which are not available on the smart adapter, but are available on the AUX2 header. |
Why would all of the Ender 5 Pro's axis motors (X, Y and Z) stop being able to move (all at once)? | The Creality V1.1.5 board was fried. I replaced it with a BIGTREETECH SKR MINI E3 V2.0 32BIT CONTROLLER. After struggling to find a corresponding firmware for the Ender 5 pro, the axis motors worked correctly. |
I want to print an image of a network in 3D — what's the best way to convert it? | Unfortunately, with only a .PNG or other file format that is traditionally two dimensional, you are missing some critical information. Unless your objective is to print something "flat with thickness," you can't create a 3D model. If your objective is to print something flat with thickness, even a program such as Inkscape with the Path to OpenSCAD extension will accomplish your goal.
I believe that Tinkercad will import images and allow you to extrude them to create the thickness aspect. Another program which supports such activity is Fusion360 (free for hobbyists) which would convert your drawing to a sketch. You'd have to add some width to the lines in order to extrude them in any program you select. It will also be necessary to trace the drawing to convert it to a vector file type. Inkscape excels in this task.
Lastly, you can arbitrarily add a third dimension to the diagram by importing it with SolveSpace. It is another free program which allows one to import a DXF file. Note that DXF is a vector file not raster, excluding your existing PNG format. It might be easier to use Inkscape to create the vector file, add width to the lines, then save it in DXF form and load it to SolveSpace. At that point, it becomes extremely challenging due to the complexity of the drawing.
Perhaps a hint or two (image, sketch, drawing) of your final objective? |
Titan extruder retraction noise | After several email exchanges with the customer support, I was not able to find an answer. It was stated that it may have been my assembly and/or extruder mount, but I'm strongly against that after so many times reassembling.
Gear backlash ended up becoming permanent.
I ended up switching over to something else with a more self-sufficient design and less variables. |
What actual dyes are used in filaments? | I spoke with a chemist tonight. He said to start with the SDS (or MSDS) for the filament, which is required to be available for most materials. It should list the pigments and additives if they are not recognized as safe. If they are safe, non-toxic, not flammable, non-reactive, they might not be disclosed on the data sheet.
He warns that sometimes the SDS lists just an industry name for a common pigment, and sometimes is the full chemical name. IMO, Google may help with translation.
The chemist has a deep background in color science and pigments. |
How is E value calculated in Slic3r? | To answer your first question:
Your calculations are not wrong, they are correct for a normal layer (uncorrected) layer. These calculations should get you very near the solution. The problem is that there are default modifiers at play that modify the extrusion process which become apparent when you change them or look at the hoover hint in the advanced printer settings section. E.g. see the image below of the "Print Settings" graphical user interface; specifically look at the hoovering hint:
The hoovering hint tells you that there is a 200 % modifier at play. What! a default modifier without me knowing? Well...., if we had looked at the
Slic3r Manual (The Important First Layer) a little better, we read that:
Fatter extrusion width. The more material touching the bed, the better
the object will adhere to it, and this can be achieved by increasing
the extrusion width of the first layer, either by a percentage or a
fixed amount. Any spaces between the extrusions are adjusted
accordingly.
A value of approximately 200 % is usually recommended, but note that
the value is calculated from the layer height and so the value should
only be set if the layer height is the highest possible. For example,
if the layer height is 0.1 mm, and the extrusion width is set to 200 %,
then the actual extruded width will only be 0.2 mm, which is smaller
than the nozzle. This would cause poor flow and lead to a failed
print. It is therefore highly recommended to combine the high first
layer height technique recommended above with this one. Setting the
first layer height to 0.35 mm and the first extrusion width to 200 %
would result in a nice fat extrusion 0.65 mm wide.
Tada! There we have the modifier from the screenshot; 200 % (this is expressed as a percentage over the layer height, and causes that an additional filament scale factor bigger than 1 is at play; the $x$ in your equations).
To answer the second question:
That should be rather straight forward, you know how long the path is and at which speed the head is moving (either at constant speed, decelerating or accelerating) and how much of filament you need to deposit, at the end point all filament needs to be deposited so you can calculate how fast the extrusion needs to be to accomplish that.
If you calculate back from a volume of 8.214 mm2 and solve for unknown $w$ you see that this yields $ w = 0.65\ mm $, and that is exactly what is stated as first layer width in your Slic3r settings; I quote:
first_layer_extrusion_width = 0.65
P.S. When you look into the source code of Slic3r, if you dig deep, you find that extrusion width is bound by minimum and maximum values, it could well be that that is causing the value to differ from 0.70 mm (200 % of 0.35). |
Mixing nozzle vs dual nozzle vs IDEX vs tool changer for pva and pla | I would advise against mixing nozzle - you would have many jams and clogs and you would have to use purge tower which in my opinion is not worth it. Thats scratching point 2.
Point 1. and 3. are similar to some extent. With both types you have to align the nozzles in all three axes. Crude aligning should be done by hardware and fine tuning done in software (too much difference in Z alignment could cause one nozzle hitting the printed part). Anyway, the aligning is pain and you will have to do many test prints to achieve sufficient results.
In my opinion, point 3. (also called Idex - independent dual extrusion, I believe) will give you best results, because while one nozzle is printing, the other one is parked on the side where it can ooze as along as you manage to wipe it when it is getting ready to print. You can use purge buckets. Also you have to home the extruders indepentently as well (one to right and one to left).
Point 1. will introduce a lot off oozing issues. You would have to use ooze shield, or other methods of wiping the other hotend, if you are comfortable with that.
As for connecting another axis to Ramps 1.4, the board has 5 stepper motor outputs (X, Y, Z, E0 and E1). Therefore there is no output for another X axis, since both E0 and E1 will be used. You have two options I can think of:
Creating your own stepper output and connecting it to auxiliary pins on the board (if you are using legacy stepper drivers, you need 2-3 pins - direction, step, (and motor enable)). That requires some basic knowledge of electrical devices and firmware. However, it is doable. Not easy for someone without sufficient knowledge, but not impossible either.
Or the other option is to buy an existing boar with 6 stepper motor outputs such as Bigtreetech SKR PRO. You still have to configure the firmware but it is much easier this time (it has been made/pre-made several times with tutorials).
I would suggest using Marlin firmware as it supports many configuration types and has very strong community - someone has likely solved your solution or can help you solve yours.
I would also suggest not using Ramps board with Arduino Mega2560. That board configuration is so old. 3D printers have moved on, whereas that board has stayed the same for 5 or so years. It is OK, perhaps good for tinkering, but there are far better options (such as the mentioned BTT SKR series boards).
Good luck with your design.
Note: I do not own a dual extrusion printer of any of the mentioned types. This is just my understanding of the theory and how I would do it, if I were to build a dual extrusion 3D printer. |
Can 1.75 mm filament be used in a printer that takes 3 mm filament? | Typically an extruder and hot end are designed for one or the other, and cannot support the other without mechanical changes.
The extruder may not be able to grip a smaller diameter filament with enough force to assure even feeding and retraction.
The hot end, however, is much more complex. The filament has to be pushed with force into the melting zone, which means the filament has to slide along an area inside the hot end where the filament is plastic but still put pressure on the filament ahead of it.
When you put filament into a hot end, the filament softens before the melt zone, but since the walls of the hot end are just barely larger than the filament it has no choice but to continue pressing down on the liquid filament below.
With a narrower diameter filament, though, the filament can heat, soften, then travel backwards along the sides of the hot end and cool in place, jamming the hot end, or at least preventing an even continuous flow of plastic.
Some hot ends will accept a small Teflon tube that takes this space up and allows you to do this with fewer issues, and if you like to tinker you can experiment with this, but be prepared to learn a lot and fail a lot as you find out the hard lessons of hot end design.
Generally you should upgrade your entire extruder and hot end setup to the size you want to use. |
BLTouch Z offset needs changes | I can't really follow the information provided but I've read that Creality had some issues with saving settings if there was no SD-card in the printer when saving, could this be the issue?
I would recommend trying another firmware (not from Creality but something like Smith3D.com (https://smith3d.com/ender-3-v2-bltouch-firmware-installation-guide-by-smith3d-com/) which I've used before with success.
If you're willing to pay for precompiled firmware (and support the Marlin developers) I can also recommend https://marlin.crc.id.au/ (which I use now) |
Under extrusion, looking for specific information | Your filament is 1.75 mm, but you specified 1.6 mm in the Filament option Diameter (mm).
Furthermore, your layer thickness is very small (0.06 mm), why not try 0.20 mm first; a thicker layer will cause a higher extrusion flow. It could be that the print speed is too high for the low layer size.
Your initial layer 0.3 mm is also high, the maximum for a 0.4 mm nozzle.
Why did you change so many parameters? The standard values work pretty well. |
What can I use to "sand" my ABS prints? | I have a bunch of solutions to this problem but I'm always looking for additional ideas. I usually start by slicing as much as possible off with a hobby knife. The more than can be removed before sanding the better.
For big prints I like big generic sandpaper sheets from the hardware store. Starting with the highest grit and moving down. Make sure you're discarding your sheets when they get totally gunked up (which can happen pretty fast) or you won't get much done.
For smaller nooks and crannies I have a set of needle files. They do a pretty good job clearing out screw holes and smaller features on printed sculptures.
I've also had some success sanding with my Dremel when it comes to annoying stuck on supports or other imperfections. Having some horsepower behind your sanding can be a nice break. I've also seen the wire brush attachments used for finishing Bronze and Copper-fill prints. Just keep an eye on your speed or you'll sand a hole in your print.
Lastly (and one I haven't tried) are these sanding sticks They were recommended by a friend and look like they would be pretty easy to use/swap out used sandpaper. |
New glass bed, should I glue it? | There are pro and cons for leaving the sticky protection baking paper on the slate of glass:
pros (for not glueing it):
Can be removed more easily in the future (the collant is not easy to remove, requires a solvent and elbow grease)
Can remove the slate of glass to put it in the refrigerator to loosen stuck prints
cons:
Need for binder clips that may cause nozzle collision and decreases bed size (unless you use kapton tape to fix the bed)
Backing paper adds another layer of insulation (unless you remove it and all the goo) |
Can I schedule prints to start at a specified time? | There are a few options to delay starting using either the OctoPrint environment or directly use G-code for this.
The use of G-code is probably the most simple for you to implement. The G4 command defines a "dwell" or pausing period for the next command to start:
Depending on the firmware you use, you can use the P or S parameter to specify the pausing period.
To pause the print job (for 1 hour) you need to insert the following line as the first line of your G-code print file:
G4 P3600000 // One hour pausing; defined in milliseconds
or (if your firmware supports)
G4 S3600 // One hour pausing; defined in seconds
Other solutions may include the adaption of the OctoPrint controls menu structure or use of the REST API of OctoPrint. These options are more difficult to implement. |
What can cause a sudden and dramatic loss in the inter-layer registration of my prints? | There are many factors, here are a few things to check:
I'd first suspect filament feeding. This type of ridging can be caused by a filament coil that is binding occasionally, or a filament that doesn't have an even diameter or volume per length. Binding within the filament feeder and feeder tubes can also be a cause. Bubbles in the filament, or sometimes a mismatch between the filament ideal temperature and the head temperature could create results like this, but it probably wouldn't vary so much between the layers.
Next I'd look at the print head. If it has blockages, or poor temperature control this could result.
Lastly, I'd check the mechanisms - disconnect the motors and see if all the carriages slide smoothly without any binding, particularly the Z axis. It doesn't look like you're missing steps, but binding here may result in greater backlash, which could result in similar ridges. Make sure any belts and gears are tight. |
How do you assure that you print layers that bond correctly? | I think the reason why the large cylinder is breaking much easier than the smokestack would is because of leverage. If you print the same cylinder at a much smaller scale it might be more difficult to break it. Think of taking a wooden stick, if you try to snap it by holding both hands near the center, it would be difficult but if you push on the very ends, the leverage will make it easier to snap. I have the tug boat on my desk right now and I was unable to snap it, instead I broke the cabin section just right above the steering wheel.
Now to answer your question. One of the faults in larger prints having weak layer adhesion could be a number of things. I think a common fault is under extrusion. If the nozzle has a high enough gap from the previous layer and it extrudes just enough filament to touch the layer but not necessarily push it snug, it could be a weak bond. This is like tape, usually when you want to make sure it will stay stuck, you press hard and rub it in. So I imagine filament shouldn't loosely flow onto layers but instead be pressed hard against the previous layers. Visually this is hard to judge but I noticed getting my first layer very close to the print bed makes every other layer stick very stronger on the previous one. You get a small skirt on the first layer but it does tend to give me a stronger bond between layers. You can easily slice off the skirt with a blade. Increasing the extrusion multiplier could give the same affect without needing to adjust bed height/leveling, but this can end up giving you some nasty walls.
Another thing I recommend is to check your Z-axis. This is difficult to measure and best to find out by print quality on tall structures. On my first printer I had the issue where my threaded Z-rods would bind and cause one of the two rods to get a slight bit ahead. This caused a layer split focused on the side opposite of the faulty rod. This made many prints very prone to breaking at that point. I had to rebuild my Z-axis assembly to correct this.
Print temperature can help, try raising it up by 5 to see if this improves the bonding.
Lastly, try another filament. Filament tends to go bad due to moisture exposure, that is why usually you receive it airtight with a small bag of silica to absorb moisture. If I use filament which has been sitting out for months, just squeezing my part separates the layers in almost a slinky kind of way. |
How to properly use Polyisocyanurate (PIR) foam with the heated bed? | An alternative solution that is used with some Kossel Mini models, is a simple cardboard covered with aluminum tape (docs).
This solution has the added benefit of actually improving heat-up time, since the reflective surface of the aluminum tape reflects the heat back into the bed, instead of getting absorbed.
It is also a very simple solution, without costly materials. I guess mounting it properly could be an issue depending on your printer, but this is a fine solution for the Kossel models, at least. |
Over-hangs in prints | It is typical for a 3D printer to be able to manage one-half the width of the nozzle for unsupported layer printing. This frequently calculates out to a realistic 45° from the start point.
If you are getting 1 mm extension from a 0.4 mm nozzle you are doing well. It's possible that the layers are not strongly bonded at the point of extension from the vertical wall, but are then strengthened by the layers printed above, if they do not extend excessively.
If your part is designed well, the extension will be distributed gradually over more than one layer, allowing that 1 mm extension over 2.5-3 layers without impacting the appearance of the model in an excessive manner.
The above does not apply to bridges, as it involves a different dynamic for the printer/slicer software. |
What does nozzle size affect besides line width in, e.g., Ultimaker Cura? | Searching the CuraEngine source, the only places I can find where nozzle size is used directly involve some arcane logic for merging of infill lines, such as:
https://github.com/Ultimaker/CuraEngine/blob/05e93dabce9e863b8742fd69ed87717e1594e7a9/src/MergeInfillLines.cpp#L124
So essentially, yes, nozzle size mainly serves as a default value for the line width settings.
However, in general it's not always possible for line width different from nozzle size to be honored.
For line widths smaller than the nozzle, motion along a path where the material being deposited has proper adhesion is required to stretch the material and prevent it from retaining the width extruded from the nozzle, and small lines already printed are likely to be damaged by the nozzle when attempting to print additional small lines in their vicinity. In particular, you won't be able to print small details significantly below the nozzle size just by extruding less material.
For line widths larger than the nozzle, compression against an existing surface is required to prevent the extra material from just sagging down rather than expanding horizontally. In particular, line widths wider than the nozzle are unlikely to work right in the presence of overhangs.
Also, as noted by Tim Kuipers in comments, there are places outside the source, but rather in the json-based configuration tree, where nozzle size plays a role in the defaults and warning ranges for other parameters. Those are mostly line widths, but
The nozzle size can affect the values of the following settings besides line width in fdmprinter.def.json: Outer Wall Inset, Outer Wall Wipe Distance and Minimum Support XY Distance. Other than that it only influences the conditions under which setting-values give you a warning. |
Why turning off model cooling for first layer? | Filament expands as it gets hot. Cooling the filament will make it shrink, so cooling the filament deposited on the bed can lead to adhesion problems and warping of your products. This is exactly the reason why you use a heated bed (the delta temperature is smaller). So keep the cooling off for the first layers and you'll be fine.
Additionally (having answered the question for not using cooling air for the first layer), I would like to add that sometimes you won't need any cooling at all (for other layers), or very little cooling.
Please do note that some filaments do not like to be cooled down too fast; this may lead to weaker layer bonding or other issues. E.g. POM filament will harden very quickly when cooled causing the nozzle to bump on the quickly hardened filament knocking the product over. Also I found that too much cooling air when using PETG leads to "string-cheese" products caused by insufficient layer bonding. ABS is reported to be even more sensitive for cooling (shrinkage during cooling is higher than of PLA or PETG filaments); a frequent advice is not to use filament cooling when using ABS filament. |
After some time stepper motor is hot | The second motor is hot. And the third is very hot. I can not even touch it.
This is to some degree, completely normal and expected. From the datasheet for a typical NEMA 17 stepper, the rated temperature rise is 80 °C above ambient and the maximum operating temperature is 130 °C (implying an ambient temperature of 50 °C). It is normal that stepper motors (in general) get a bit hot.
"Too hot to touch" is still relatively cold. 60 °C is already too hot to touch, and that's only a 40 °C rise above a 20 °C ambient temperature.
You can reduce the temperature rise of the motors by reducing the current they receive. The stepper driver has a small potentiometer that can be turned to adjust the current, but keep in mind that doing so will also reduce the torque of the motors and thus they might skip steps if you reduce the current too much.
Technical details: Note that stepper motor drivers used in 3D printers are constant current drivers, and the little potentiometer controls the current. If you had not paid much attention to this potentiometer, the drivers might all have been set for the same constant current of $1.0\ \text A$. The stepper driver would (to achieve the same constant current) send a higher voltage to the higher resistance motors. This would imply a power dissipation of $2.4\ \text W$ in the Nema 17, and a power dissipation of $10.5\ \text W$ in the small stepper. $2.4\ \text W$ in the Nema 17 would only heat it up by about $20\ °\text C$ above ambient. A dissipation of $10\ \text W$ in the small stepper, which also has much less surface area to dissipate the power, would heat it up by a lot (and probably, given that you didn't fry it, the current was set lower -- or a technical peculiarity limited the current given that the motor likely also has very low inductance). |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.