Upgrading from Anet board with Auto leveling
-
To the 5v on the right.
-
Where would I plug in my sensor? The E0 stop, z stop or zprobe?
FYI I just ordered the duet wifi!!
-
The outer 2 pins of the E0 endstop would be best.
-
Thanks! I'm sure I'll have more questions once my board arrives!
-
Ok so I just received my duet wifi!! I have setup the wifi and am able to access the web interface. I was going through the RepRapFirmware Configuration Tool and had some questions on translating my marlin settings.
I have provided links below that shows comparisons between marlin and the config tool.http://imgur.com/XmuD66n config tool motor settings
http://imgur.com/mN9kzqM marlin motor settingshttp://imgur.com/lA1gy2o config tool endstop settings
http://imgur.com/2wqDuZv marlin endstop settings
http://imgur.com/9gsdyXs marlin z probe settings -
I think I have everything setup. the only thing I'm having issues with is the zprobe.
I have the zprobe wired up as dc42 suggested.
the gnd and signal pins from my sensor are wired to E0 endstop connections E0 stop and GND.
I have the 5v for my sensor connected to the 5V expansion connector pin 1.
when trying to run G29 I keep getting this errorError: No valid grid defined for G29 bed probing
Below are some of my config settings for the z probe and my bed.g file
thanks for all of the help.
[[language]] ; General preferences M111 S0 ; Debugging off G21 ; Work in millimetres G90 ; Send absolute coordinates... M83 ; ...but relative extruder moves M555 P2 ; Set firmware compatibility to look like Marlin M208 X-14 Y0 Z0 S1 ; Set axis minimum set so x0 y0 is at corner of bed x=-14 M208 X220 Y220 Z240 S0 ; Set axis maximum ; ????????? not sure about zprobe configuration ; Endstops M574 X1 Y1 Z0 S0 ; Define active low and unused microswitches ;zprobe section ?????????? M558 P4 X0 Y0 Z1 H5 I1 F120 T6000 ; Set Z probe type to switch, the axes for which it is used and the probe + travel speeds G31 X0 Y53 Z2 ; Set Z probe offset and trigger height see end of this file.
bed.g file
[[language]] M561 ;Clear any bed transform G28 ;Home all axes M557 X10:210 Y53:210 S40 ;Define mesh grid G29 S0 ;Probe the bed and save height map to file M374 ; Save calibration data. Default is sys/heightmap.csv
-
I think i found my problem. Let me know if I'm right.
When setting up the grid with M557 I should subtract the z probe y offset (53) from my current numbers.
I believe it should look like this: M557 X10:210 Y0:157 S40 -
You don't need to subtract the Z probe offset, however any points that are not reachable by the Z probe will not be probed.
My guess is that you had a typo in your M557 command.
-
Thanks for the help. I have everything working now!
just as a reference below are my zprobe and bed.g configsZ-Probe
[[language]] M558 P4 X0 Y0 Z1 H2 I1 F120 T6000 G31 P1000 X0 Y53 Z6.582
bed.g file
[[language]] M561 G28 G90 M557 X10:210 Y0:210 S40 G29 S0 M374
-
You don't need the M374 command, the G29 S0 command will save to heightmap.csv anyway.