In theory this should only move 20 but no… it moves 60, isn’t the G92 working on klipper?
G92 E0
G1 E10 F500
G92 E40
G1 F900 E50
In theory this should only move 20 but no… it moves 60, isn’t the G92 working on klipper?
G92 E0
G1 E10 F500
G92 E40
G1 F900 E50
Is the printer set to relative or absolute extrusion mode?
How can I check what mode it is in?
Afaik , you can’t check. You just can set.
Use absolute/relative coordinates:
G90
,G91
It moves with the two commands…
G91
G1 X+100 F600
G28 X
G90
G1 X+100 F600
moves with both
Opps, I mixed it up.
I meant M82/M83
for extrusions
Use absolute/relative distances for extrusion:
M82
,M83
ok this is the context; I have this problem when changing the extruder, I need it to take out the first filament, then insert the other and then continue printing, as if it were an m600; So I did this;
T0
G1 E-150 F800
T1
G1 E+150 F500
G92 E20
but it does not work;
example;
;normal gcode
G1 X125.299 Y114.392 E10.56672
G1 X125.29 Y115.119 E10.60299
G1 X125.239 Y116.025 E10.64826
G1 X125.108 Y116.923 E10.69354
G1 X124.899 Y117.806 E10.73881
G1 X124.613 Y118.667 E10.78407
;
;
;my code
T0
G1 E-150 F800
T1
G1 E+150 F500
G92 E10.82936
;
;
;normal gcode
G1 X124.252 Y119.5 E10.82936
G1 X123.819 Y120.297 E10.87461
G1 X123.318 Y121.054 E10.9199
G1 X122.752 Y121.763 E10.96516
G1 X122.125 Y122.42 E11.01047
G1 X121.444 Y123.019 E11.05572
G1 X120.712 Y123.556 E11.10101
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.