@jens55 said in BIQU microprobe with Duet Maestro:
@yagodajm , I also replaced a BLTouch with a microprobe and ran into a lot of problems before I figured things out. The microprobe uses entirely different commands. Their web site has more info. I will look-see if I can find the details .....
OK, here are the files I changed:
Deployprobe.g:
; the following was for the BLTouch
;M280 P0 S10 ;S10 is the “angle” the PIN is put in to engage.When dealing with BLTouch the engaged position is at angle 10.
; this for the BEQU Micro probe:
M42 P0 S1
........................................................................................
part of my config.g with comments:
; when setting up different probes or end switches the following files (besides config.g) are affected:
; homez.g
; bed.g
; deployprobe.g
; retractprobe.g
; possibly any probing macros
;==============================================
; set up BIQU micro probe
;==============================================
;M950 P0 C"servo0" ; was BLTouch
M950 S0 C"exp.heater3" ; create servo/gpio 0 on heater 3 on expansion connector
;M558 P9 C"^zprobe.in" H3 F60 T6000 A10 R1.25 S0.008 B1 ; was BLTouch
M558 P5 C"^!zprobe.in" H3 F60 T6000 A10 R1.25 S0.008 B1 ; Set Z probe type/mode 9. H=Dive Height. F=Speed probe speed,
; T= speed between probe points, A10 = probe up to 10 times
; R1.25 = allow settlement time, S0.008 = two consecutive probes need
; to be within 0.008 mm,
;M280 P0 S10 ; B1 = turn off heat for the actual probing
; B0 = leave heating on
.....................................................................................................
retractprobe.g:
; the following was for the BLTouch
;M280 P0 S10 ;S10 is the “angle” the PIN is put in to engage.When dealing with BLTouch the engaged position is at angle 10.
;P-number corresponds to our H-number while S defines the “angle” to put the probe into. When dealing with BLTouch the retracted position is at angle 90.
;M280 P0 S90
; this for the BEQU Micro probe:
M42 P0 S0
................................................................................................
I looked at my bed.g and it didn't seem to be changed
I checked my homez.g and didn't notice any specific commands for the microprobe
I can't guarantee that those are the only changes but it will get you going
Hey man,I recently posted issues myself with th same as OP I tried your code and it got me a little further but still having erratic issues.
Did you have any info on your code for the bed.g homez.g etc?
Thnk you!