Start GCode
Posted: Wed Mar 13, 2019 11:52 pm
Hi all,
at the moment im trying to add a autobed leveling to my i3 pro w model. The measuring is working but i have some issues with the fine tunning.
for the sensor im using a capacitive one.
at possition 0 im having 0.4mm nozzle --> heatbed and 1,4mm sensor --> heatbed
the outcome was ok but i think it could be a little bit better, so i wanted to add a additional line in my Gcode start script to decrease the distance to the bed without updating the firmware:
i printed my test pattern new and the outcome was like before ... so i increased the value to -0.2 up to -0.3 but it seems that the outcome was always the same.
Can you tell me if i did a failure? Or my understanding for G92 is wrong?
2. question:
in the default code are the lines:
Why is he setting the feedrate on the E3 Extruder? Or what does E3 means? And why is he using the G92 two times?
Hole Start Code:
Regards
Joe
at the moment im trying to add a autobed leveling to my i3 pro w model. The measuring is working but i have some issues with the fine tunning.
for the sensor im using a capacitive one.
at possition 0 im having 0.4mm nozzle --> heatbed and 1,4mm sensor --> heatbed
the outcome was ok but i think it could be a little bit better, so i wanted to add a additional line in my Gcode start script to decrease the distance to the bed without updating the firmware:
Code: Select all
G28
G29
G92 Z-0.10 <---- new line
Can you tell me if i did a failure? Or my understanding for G92 is wrong?
2. question:
in the default code are the lines:
Code: Select all
G92 E0
G1 F200 E3
G92 E0
Hole Start Code:
Code: Select all
G28
G29
G92 Z-0.10
G1 Z15.0 F6000
G92 E0
G1 F200 E3
G92 E0
Joe