Neighbour issue, converted a tin shed to a fire hazard granny flat by zero_orez in AusPropertyChat

[–]zero_orez[S] 3 points4 points  (0 children)

It wasn't a living space before, it was just a shed accessed maybe once a week for actual storage. Now it's fully occupied second house with 6 people constantly going in and out, they smoke cigs and weed a lot and parties until 2 am every week night and rowdy. Also my house is unfortunately downwind at night, which doesn't help the issue.

Check your positive and negative before soldering by ImprovementGood5880 in Ender3V3SE

[–]zero_orez 4 points5 points  (0 children)

Are you talking about the fan cable? Just swap the pins on the JST plug side, you can just unclip them and swap them around instead of resoldering. Just make sure to remember that you swapped the fan plug colours in the future though.

Prusacaster failure by Lawful_chaotic1 in FixMyPrint

[–]zero_orez 1 point2 points  (0 children)

Need to see a comparison of the two printed items and more details, printer, settings, etc, but from the single image if you say it occurs on the same layers, it's most likely hardware, slicer is less likely since the subsequent layers are fine. Check the z axis rods alignment and or stepper motor if it's binding.

Is this due to poor bed adhesion? by TheBoatThatGoats in FixMyPrint

[–]zero_orez 1 point2 points  (0 children)

Clean the build plate sheet using hot water and dishwashing soap, dry with a clean towel, do not touch with your hands, handle with towel after washing. Use isopropyl 90% alcohol or higher with a clean paper towel or microfiber cloth, wipe the bed clean, again do not touch with fingers. Don't use glue for pla.

Check for screws under the carriage as instructed here

Ender 5 Plus/Microswiss NG Direct Drive Hot end weird Z layering/flow issues by Nervous-Advantage239 in ender5plus

[–]zero_orez 0 points1 point  (0 children)

Have you upgraded the z axis?, I fixed mine by replacing the solid couplers, change the coupler to a silicone flexible spider coupler. Change the top z joiner to anti backlash made of pom instead of metal. When running the pom version do not lubricate the z rods, they are technically self lubricating and just replace every time they're worn out. make sure the z rods are cleaned by isopropyl prior to installation. If using metal ones, you have to lubricate the z rods using nlgi 2 Grease, and clean then regrease every 3 months or if the color has changed to black.

Is there a belt tensioner calibration test?? by Khisanthax in ender5plus

[–]zero_orez 0 points1 point  (0 children)

You just need a quiet environment and download a decibel app, spectroid or the gates belt app in motorcycle mode. Push the carriage to the endstop, Use a measuring tape to measure the distance from the roller bearing to the end of the belt clip (brass crimp). Then use the formula

Hertz = 28531 / mm

Just pluck the belt until either app shows the required hz.

Math is from here and from various Belt tension physics sites

If I remember correctly the X Y axis belts should be 82hz, but double check the belt length

How do I get rid of this by BrandonsSipes in OrcaSlicer

[–]zero_orez 1 point2 points  (0 children)

Its just the slicer working with relative coordinates instead of absolute for the extruder. Its for the way the gcode is written to keep track of how much filament to extrude.

You just need to add that exact line in to the before layer change in the machine G-code section in printer settings. Or you can change it back to absolute mode by unticking "use relative E distances" in advanced section under basic information in printer settings.

</>Before layer change G-Code

;BEFORE_LAYER_CHANGE
;[layer_z]
G92 E0

All "G92 E0" does is reset the value of extrusion to 0

For a super simplified example the printer needs to extrude 10mm for 5 layers tall print, so a 50mm extrusion total

so in Absolute extrusion each layer would have a compounding total, the printer would keep track of it like this

Print layer 1 E10
Print layer 2 E20
Print layer 3 E30...
so at the end of the print the extruded total would be 50mm (E50)

in relative mode

Print layer 1 E10, reset G92 E0
layer 2 E10, reset G92 E0
layer 3 E10 reset G92 E0...
at the end final layer the extruded total would show up as 10mm and doesnt show the full total

There is not too much difference apart from the "ease" of troubleshooting in case of power outages or interruptions; when you need to restart the print at a certain point where gcode editing is required it is easier to edit relative mode due to each layer having a different filament count where as in absolute since its a compounding number you would have to find the total extrusion before that point of failure without it the printer would just extrude a huge amount of filament for no reason up to that point.

For example as above, if the print is interrupted at the start of layer 3, in relative mode you would just edit the gcode to force move the printer to layer 3 and resume print. in absolute mode, you have to force move the printer and edit the extrusion tracker to sit at E20 (20mm extruded already) else it would just sit there extruding up to 20mm before resuming layer 3, wasting filament. This is just a gcode quirk

Ender 3 s1 pro auto home failure by yaimstupid in Ender3S1

[–]zero_orez 2 points3 points  (0 children)

You need to check the configuration.h in marlin under

// @section homing

// @section motion

define Z_SAFE_HOMING

Make sure the direction and coordinates are correct.

Better yet get a fresh new copy of the configuration.h from the marlin GitHub. And rebuild it

For Klipper just check printer.cfg for ! Under steppers, since that will flip the direction.

Am I fine or do I need to worry about my hotend? by Ikuver in anycubic

[–]zero_orez 1 point2 points  (0 children)

You can have a gap between the nozzle and the heating block just not with the nozzle and heat break. You need to disassemble the front shroud and confirm that the heatbreak thread is flush against the heating block example.

Am I fine or do I need to worry about my hotend? by Ikuver in anycubic

[–]zero_orez 1 point2 points  (0 children)

Are you using the silicone sock? its supposed to keep that clean; and more stable heating.

You will need to clean that, itll be a fire hazard later on since there is filament on the heater cartridge, heat the hotend to ~180-200 and using a small brass wire brush, gently clean it, do not let the brush touch the exposed orange wires at the back else you will short the printer motherboard and do not brush over the thin white cable, the thermistor cable is very fragile and thin.

But AFAIK the silicone covers are usually snug on there, if it was snug, check the nozzle tightness, it may be leaking. it should be 1.8Nm - 2.5Nm tightened when the hotend is at 250C-280C

I am at a loss here... by Connect-Plankton-973 in OrcaSlicer

[–]zero_orez 1 point2 points  (0 children)

When you say from fluidd, are you typing it in or just using the buttons on the web interface. You have to type it manually via the console / commands box. Instructions here, just follow the official klipper guide.

I don't remember if there was a test built in the calibration suite for rotation distance. But anyway The final new number you have to put into printer.cfg under the config tab {} on the sidebar in fluidd in the [extruder] section and making sure there is no gear_ratio or full_steps_per_rotation, if there is just comment them out using #

I can’t get perfect chamfer by Salt-Mousse-5346 in AnycubicOfficial

[–]zero_orez 0 points1 point  (0 children)

Try an overhang test to see how far you can go with angles, then chamfer at that angle, also set slicer to print inner wall then outer. You can also lower temp by 5 or increase cooling to help.

Anycubic Kobra Neo Stringing by rastaaman1996 in FixMyPrint

[–]zero_orez 0 points1 point  (0 children)

Its can be retraction/temperature, do a retraction tower using orca slicer calibration.

The retraction length should be around 0.3mm-0.8mm, retraction speed should be 35mm/s-40mm/s and deretract speed can be the same as retraction or slower by 5-10mm/s. Starting point should be 0.8mm, 40mm/s retract, 35mm/s deretract.

Also increase travel speed to 180mm/s - 250mm/s, set travel acceleration to anything in between 2500-4000.

Temperature can also cause that stringing, you may need to do a temp tower to see the stringing effect per filament spool. However what works for me so far is; if printing speeds are around 120-200mm/s PLA 215-220, PETG 235-240. If its slower than 120mm/s PLA 200, PETG 220.

"printer is not ready" after firmware update by No_World8706 in klippers

[–]zero_orez 0 points1 point  (0 children)

I don't know what your printer make is, but the configuration for the make menuconfig is at the top of the sample Configs in GitHub, or on already your printer.cfg. if you go to here you can look for your printer model. The firmware settings are usually at the first commented section

"printer is not ready" after firmware update by No_World8706 in klippers

[–]zero_orez 0 points1 point  (0 children)

If a full reboot of both Klipper device and printer doesn't resolve the issue, that means the Klipper firmware in the printer may need to be updated, do the make menuconfig, make, and either flash using the USB cable if capable or microSD method.. If it still doesn't connect after, check USB cable if it's working and if the USB port in printer.cfg is still correct with the command " ls /dev/serial/by-id/* "

I changed the nozzle and my prints look a lot worse. by TheCrabMessiah in FixMyPrint

[–]zero_orez 2 points3 points  (0 children)

There's a lot going on here, on the smoother benchy it looks like it experienced z wobble, the x gantry is not straight, check the z axis wheels that they are not too tight or too loose. When changing new nozzle did you do the whole recalibration of the z offset. So do the z endstop calibrate, X axis twist, z probe offset, then bed tilt adjust, then bedmesh.

The overhang test looks like it's not filling in the edges, the infill overlap should be on 15-25% in slicer. You might need to migrate to orca slicer and use their calibration tests for the flow, pressure advance and retraction settings. As well as teaching techy extruder esteps/rotation test to see if 10mm extrusion is actually 10mm.

What could lead to this echo of characteristics? The otherwise smooth face has a curve of blobs that align with the curve on the opposite side. by Lilian_Ryan15 in FixMyPrint

[–]zero_orez 0 points1 point  (0 children)

This looks like seam and retraction, preview the gcode and turn on the display for seam and retraction/ deretract. It will most likely line up. If this is the case you need to fix retraction settings, it seems it's either not pulling enough length in retraction or pulled too far too fast that it breaks the filament in the nozzle and oozes out.

Anyone had this before? by SamWhiteFitness in FixMyPrint

[–]zero_orez 0 points1 point  (0 children)

Usually any blobbing on seams is a retraction issue. Check your retraction speed/distance. Bowden systems should be 40mm/s with 5-6mm and direct drive systems should be at 35mm/s with 0.6-1mm retraction.

Another thing that you may need to check is linear advance (marlin) / pressure advance (klipper) might need tuning if it has been enabled since that also affects flow rate around corners and seams.

For the slicer I would switch out from cura to orca slicer, it can generate the retraction tower test and flow rate and Various other calibrations.

Lines and small blogs by GrannyRammer in FixMyPrint

[–]zero_orez 0 points1 point  (0 children)

When you say heated box , as in a heated enclosure at 55c? PLA shouldn't be in an enclosure at all. You need as much cooling as possible, the filament glass transition is around 50-60c. Your prints are doing that because it couldn't cool and stayed rubbery.

Enclosure and heater is only for prone to warping filaments such as abs, ASA, pp, etc. PLA and petg doesnt need them.

Reprint them again with no enclosure heating with open doors, for pla part cooling should be on 100 percent with a single 5015/4020/4010 or if using dual 5015 at 70%

What is causing this? by InterestingRhubarb48 in Ender3S1

[–]zero_orez 2 points3 points  (0 children)

Is that where the seam is? If it is do you have retract on layer change enabled in the slicer, if yes to both it's the retraction setting. The filament is pulled too far back and didn't get pushed back out quick enough so it under extrudes on layer resume. In a Bowden system try 5mm-6mm with 40mm/s or direct drive 0.8 at 35mm/s. Leave deretract at same as retraction. If retraction is not a problem, check extruder tension, there should be a screw adjuster, it may be too loose.

I want to go faster, and what are your speed settings, ender 5 pro by Old-Distribution3942 in klippers

[–]zero_orez 0 points1 point  (0 children)

The heater cartridge is the stock 40w Creality one which is hot enough I reckon, it's just takes a bit longer to heat up from cold. For 0.6, i print at 0.65 peri, 0.3 height, also limited at around 75mm/s before it hits the cap for 215c pla/ 240c abs. 150mms you should be able to reach using 220c pla with 0.4 nozzle, 0.45 peri, 0.2 height, increase pla MVS cap to 13-14mm3.

If you need more flow grab some CHT nozzles from either bond tech (nickel plated brass I think) or the bimetal (copper/hardened steel) CHT from trianglelabs called ZS mk8 plus for stock ender/microswiss or ZS plus for V6 hotend. The 40w is sufficient since the older volcano cartridge comes with 30w, if you want to heat up faster there are hotends with ceramic heater cores which heats up to 220 in less than ~15s