-
-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with gcode output #451
Comments
you have gcode_flavor = reprap and reprap now use g10 |
@atxbyea One solution is to set the G-code flavor to either |
Sorry for the late reply @qwewer0 @supermerill I was sure I used Klipper on my last try of superslicer, I have now downloaded the latest version of superslicer on a new machine and selected "klipper" as the custom printer, however I cannot see any indication of temperatures in the gcode, nor does the print start because it is complaining about extruder not being hot enough. I want to move away from cura and superslicer seems to be the best choice out there. See attached project and gcode. |
I'm probably not the best at tracing these things but the thing I noticed about your Printer setup is you dont have any commands to set the extruder temp or bed temp initially in your start gcode. As your First layer and Other layer temp settings under filament are also the same at 210 degrees it doesnt insert a temp command. As an experiment I changed the other layers temp to 220 and it inserted a M104 S220 at what looks like the second layer to me. These set your initial extruder and bed temps from the values set under Filament - first layer. The the slicer inserts any changes to those IF DIFFERENT on subsequent layers. As your values are the same then the gcode doesnt contain any commands to set either the extruder or bed temp. I think you need to add the lines I posted above to your printer start gcode. Or use a Klipper macro to set the temps triggered by something added to your start gcode. Personally I'd just use the simple way. |
You have to write the m104 yourself for klipper, as most of the klipper user use their own macro instead, and so i can't detect that you forgot to write it. |
Interesting, good to know, I was expecting the slicer to fill them when the fields are populated under settings, but I can try adding them myself and see if it starts printing as expected. |
Thanks for the examples, I'll go ahead and try to add it at the start of my gcode and see what happens. |
Issue solved, works fine by adding from example 👍 |
Version
Version of SupserSlicer used goes here
Use
About->About SuperSlicer
for release versionsFor -dev versions, use
git describe --tag
or get the hash value for the version you downloaded orgit rev-parse HEAD
SuperSlicer 2.2.53
Operating system type + version
What OS are you using, and state any version #s
In case of 3D rendering issues, please attach the content of menu Help -> System Info dialog
GalliumOS
Linux hinata 4.16.18-galliumos #1 SMP PREEMPT Sun Jun 23 04:14:45 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
buster/sid
3D printer brand / version + firmware version (if known)
What 3D printer brand / version are you printing on, is it a stock model or did you modify the printer, what firmware is running on your printer, version of the firmware #s
Ender3 Pro with latest Klipper
Behavior
Is this a new feature request?
gcode tries to set extruder temperature with G10, see attached snippet here with my changes included :
M107 M190 S60 ; set bed temperature and wait for it to be reached M104 S200 ;G10 S200 ; set temperature ;G28 ; home all axes ;G1 Z5 F5000 ; lift nozzle ;G10 S200 ; set temperature M116 ; wait for temperature to be reached G28 G1 Z5 F5000 M109 S200 G21 ; set units to millimeters G90 ; use absolute coordinates M82 ; use absolute distances for extrusion G92 E0
Also tries to do M116, which isn't valid for klipper either I think.
This only happens when using custom profile - klipper in superslicer
Project File (.3MF) where problem occurs
Upload a SuperSlicer Project File (.3MF) (
Plater -> Export plate as 3MF
for Slic3r PE 1.41.2 and older,File -> Save
/Save Project
for SuperSlicer, Slic3r PE 1.42.0-alpha and newer)file.zip
The text was updated successfully, but these errors were encountered: