this post was submitted on 05 Jan 2024
18 points (100.0% liked)

3DPrinting

15433 readers
98 users here now

3DPrinting is a place where makers of all skill levels and walks of life can learn about and discuss 3D printing and development of 3D printed parts and devices.

The r/functionalprint community is now located at: !functionalprint@kbin.social or !functionalprint@fedia.io

There are CAD communities available at: !cad@lemmy.world or !freecad@lemmy.ml

Rules

If you need an easy way to host pictures, https://catbox.moe may be an option. Be ethical about what you post and donate if you are able or use this a lot. It is just an individual hosting content, not a company. The image embedding syntax for Lemmy is ![](URL)

Moderation policy: Light, mostly invisible

founded 1 year ago
MODERATORS
 

Hi folks,

I've used Cura as my main slicer with my Flashforge Creator Pro for several years with no major issues. It was a while since I had upgraded (4.12) and I decided to try out the latest version (5.6).

My printer and slicing profiles seemed to transfer over automatically, but when I tried to slice and print, I encountered a strange issue: It no longer heats the extruders or the bed.

It just starts "printing" immediately with stone-cold extruders and bed. The temperature settings in my slicing profiles seem unchanged from 4.12, so I'm a bit at a loss as to what is happening.

I can verify that this is not a hardware issue with the printer, as I can run print jobs generated in Cura 4.12, and the heaters work just fine.

Anyone else encounter this or a similar issue? Any known fixes or recommended troubleshooting advice?

Thanks in advance!

you are viewing a single comment's thread
view the rest of the comments
[–] charmed_electron@programming.dev 4 points 9 months ago (3 children)

The way that the heaters turn on and off is by using a gcode command. So my first thought is that somehow the new slicing profile is not spitting out those commands. Try comparing the generated gcode from slicing the same model in both versions and see what’s different. The temperature commands have to be at the start so should be easy to find. The gcode commands themselves are very googleable.

[–] FuglyDuck@lemmy.world 2 points 9 months ago* (last edited 9 months ago)

The gcode command should be either

m104 e0 160

Sets the first extrider to 160, doesn’t wait

Or
M109 e0 190

sets the first extruder to 190, waits to reach temp before moving on,

I would consider checking with a usb connection and setting the hot end temp manually that way, if that works, it’s something in the gcode, and you can pull up a gcode reader (or text file,) and search for them.

[–] callcc@lemmy.world 2 points 9 months ago (1 children)

Look at the start G-code of your configured printer. Copy over the one from the old version into the new version.

The start gcode of the old version and new version are identical.

[–] threelonmusketeers@sh.itjust.works 1 points 9 months ago (1 children)

Try comparing the generated gcode from slicing the same model in both versions and see what’s different

Is there an easy way to compare .x3g gcode files? It seems to be in binary format, rather than plaintext. Alternatively, is there a way to capture the slicer output gcode before it is translated to x3g?

[–] callcc@lemmy.world 1 points 9 months ago* (last edited 9 months ago) (1 children)

Wtf is that format and why would anyone use it. I guess it's compressed. That would be the only reason to have a binary format for this.

Also the who writes the x3g file? Is it cura directly?

[–] threelonmusketeers@sh.itjust.works 1 points 9 months ago (1 children)

Wtf is that format and why would anyone use it

I think x3g is the required format for all printers running Sailfish firmware, such as my FlashForge printer. I'd be hesitant to change the firmware, as I don't want to risk bricking my printer if I do the wrong thing.

Also the who writes the x3g file? Is it cura directly?

Cura writes the files using the X3GWriter plugin by Ghostkeeper. Perhaps there is a way to turn off this plugin and compare the gcode?

[–] anguo@lemmy.ca 1 points 9 months ago

I'm sure there must be a way to temporarily change Cura's settings to export G-code instead of x3g. Did you figure this out yet?