Duet Web Control 2.1.1 showing wrong job height
-
Hello all,
Hope you're doing well in this special period.
My DWC, is showing the same height for all my objects. I tried slicing with simplify 3d & Prusaslicer, result is the same.
Do you have the same issue ?Have a nice day.
-
Can you please try DWC 2.1.4 which just released.
Also, which firmware?
Can you share one of the gcode files as well?
-
Hi Phaedrux,
Here is my firmware :
Board: Duet WiFi 1.02 or later (duetwifi102)
Firmware: RepRapFirmware for Duet 2 WiFi/Ethernet 2.05 (2019-12-13b1)And i did the update for DWC :
Duet Web Control 2.1.4Still have the same issue.
Here is a gcode for exemple.
Cadre ventilo.gcode -
I think I see the problem in your slicer end gcode
G1 X10 Z75 F4800
DWC is scanning the file for the last Z height found and is finding this from the end code. You can get it to ignore it by adding ; E to the end like so
G1 X10 Z75 F4800 ; E
This will make it think there is an extrusion value and will ignore it. That will likely solve the incorrect object height.
-
Hi, perfect you find the problem.
Your solution solves it.Thank for your help !
Have a nice day -