Orca not accepting standard Klipper/G-Code #1142
-
After using SuperSlicer for a few years working fine, my machine start G-code doesnt transfer over to Orca nicely even though the settings are set for Klipper as best I can tell. The problem I'm having is on line 5, about 'first layer height'. Attempting to slice this brings up a parsing error which I cant seem to figure out, claiming this line is "invalid g-code". Thoughts? Here's the old code (which definitely works on the same machine) from Superslicer: *I also tried the pre-loaded machine G-codes that are added by default when configuring a new machine in Orca, and even those didnt work. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Parameter name I think is initial_layer_print_height |
Beta Was this translation helpful? Give feedback.
-
@stratiegery01
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your Solution. |
Beta Was this translation helpful? Give feedback.
@stratiegery01
There are syntax errors in your start g-code
first_layer_temperature
andfirst_layer_temperature
are vectors, so you will need [] to access themOr use this syntax
m140 s{first_layer_bed_temperature[0]} ; bed temp warm
initial_layer_print_height
instead offirst_layer_height
variable name.