Hi jonsag,
Great post !
I'm about to wire up my first ever printer and have made a couple of mods during the build.
(Rather than build, play and up-grade later, requiring a re-build)
These mods being the use of T8 lead screws and addition of the 3dTouch bed sensor.
Hence your set-up files will be most useful.
(You can tell I'm a COMPLETE novice to the world of 3D printing)
I note that you say you have a " GT260A+ " board...
I've googled this and the ONLY 'Hit' was this very post, so am I correct in thinking you have a GT2560A+ board ?
I have the GT2560 rev A+ version - it can take the 3dTouch without any soldering - 3 pin connector already there, and use the two pin connector on the Z_MIN plug.
I've read the config h file and this seems correct in it defines the use of the Z-min connector for the levelling.
Code: Select all
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
I do have a couple of questions regarding the config h file that I don't fully understand.
You have the line...
Code: Select all
#define DEFAULT_AXIS_STEPS_PER_UNIT { 81.5, 81.5, 400.69, 94 }
Is there any reason why the values aren't { 80, 80, 400, 93 } ?
These would fit with other config h files I've looked at, converting the original '2560' to '400' as the Z screw thread pitch demands.
I was wondering if you've added some measured shrinking allowance or similar, or am I over-thinking this ?
I have a friend printing my sensor mounting bracket as I write.
(He has an 'Off the shelf' printer, so he's not going to be much help with my set-up questions)
It's the downloaded version available with the sensor.
I wondered what bracket you used ? - You've used the off-sets as set in the lines
Code: Select all
#define X_PROBE_OFFSET_FROM_EXTRUDER 4 // X offset: -left +right [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER -40 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER -1.32 // Z offset: -below +above [the nozzle]
I ask, as the values given on the 3d touch web page you very kindly added the link to are...
Code: Select all
#define X_PROBE_OFFSET_FROM_EXTRUDER 6
#define Y_PROBE_OFFSET_FROM_EXTRUDER -43
#define Z_PROBE_OFFSET_FROM_EXTRUDER -1.4
Not massively different, how important are they ?
Lastly - (Honest !)
Am I correct in thinking by the 'Un-commenting' chosen, that you've chosen to use a 9 point grid to check your bed ?
Code: Select all
#define AUTO_BED_LEVELING_LINEAR
#define GRID_MAX_POINTS_X 3
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
(All other options commented out via the use of preceding // )
Assuming my ProB has the same size bed etc as yours (I could read where these were defined)
Then this would be great for my requirements.
All in, many thanks for the files, I'm going to start with these in setting up my printer.
Gerry