@number40fan Reversing the Y motor direction worked, now it probes well but at the end displays this message:
"Error: Z probe already triggered at start of probing move"
I´m using this in config.g:
//////
; Configuration file for Duet Ethernet (firmware version 1.17)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Thu Jul 27 2017 11:25:57 GMT+0100 (WEST)
; 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
M586 P1 S1 ;Allow FTP
M667 S1 ; Select CoreXY mode
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X290 Y190 Z335 S0 ; Set axis maxima
; Endstops a funcionar com endswitch
;M574 X1 Y2 Z1 S0 ; Define active low and unused microswitches
;M558 P0 X0 Y0 Z0 H20 F120 T6000 ; Set Z probe type to switch, the axes for which it is used and the probe + travel speeds
;G31 P600 X0 Y0 Z0 ; Set Z probe trigger value, offset and trigger height
;M557 X0:290 Y0:190 S20 ; Define mesh grid
; Endstops a funcionar com sensor
M574 X1 Y2 S0 ; Define active low and unused microswitches
M574 Z1 S2 ; O do ZZ
M558 P4 I0 H5 F500 T5000 ; Set Z probe type to switch, the axes for which it is used and the probe + travel speeds F era 120
G31 P400 X28 Y12 Z0.42 ; Set Z probe trigger value, offset from probe to nozzle and trigger height - O trigger height deu 0,41 seguindo o protocolo) Valor Z0.82 com pei Z0.5
M557 X0:300 Y0:200 S50 ; Define mesh grid
; Drives
;M572 D0 S0.15
M569 P0 S0 ; Drive 0 goes backwards era 0
M569 P1 S0 ; Drive 1 goes forwards era 1
M569 P2 S0 ; Drive 2 goes backwards
M569 P3 S0 ; Drive 3 goes forwards (Extruder)
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
; M92 X100 Y101 Z400 E133 ; Set steps per mm BOWDEN
;M92 X101 Y101 Z406 E141 ; Set steps per mm PRUSA EXTRUDER E140 é o normal // Este tem medidas muito exactas
M92 X100 Y100 Z404 E141 ; Set steps per mm PRUSA EXTRUDER E140 é o normal // Este é parecido com as prusas
; Movements
;M203 X4200000 Y2700000 Z300 E144000 ; Set maximum speeds (mm/min) DO GENERATOR
M203 X18000 Y18000 Z900 E3000 ; Set maximum speeds (mm/min) em teste
;M201 X950 Y950 Z30 E1000 ; Set accelerations (mm/s^2) /// Bowden
;M201 X800 Y800 Z30 E1000 ; Set accelerations (mm/s^2). /// Direct
M201 X1000 Y1000 Z100 E150 ; Set accelerations (mm/s^2) //// Em teste
;M566 X2400 Y2400 Z12 E2750 ; Set maximum instantaneous speed changes (mm/min) Jerk /// BOWDEN
M566 X800 Y800 Z30 E30 ; Set maximum instantaneous speed changes (mm/min) Jerk /// DIRECT
M906 X900 Y900 Z900 E900 I10 ; Set motor currents (mA) and motor idle factor in per cent
M84 S20 ; Set idle timeout
; Heaters
M143 S280 ; Set maximum heater temperature to 280C
; M301 H0 S1.00 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
; M307 H0 A97.6 C712.3 D0.5 B0 ;PID Heater0 (Heatbed)
; M307 H1 A496.6 C220.4 D8.0 B0 ;PID Heater1 (hotend 0)
M305 P0 T100000 B3950 C0 R4700 ; Set thermistor + ADC parameters for heater 0 /// B era 4138
M305 P1 T100000 B4725 C7.06e-8 R4700 ; Set thermistor + ADC parameters for heater 1
M570 H1 P20 T120 ; Modifica o threshold de temperaturas do extrusor quando entra a layer fan
; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
; Network
M550 Dbot ; Set machine name
M540 PBE:EF:DE:AD:FE:ED ; Set MAC address
M552 P0.0.0.0 S1 ; Enable network and acquire dynamic address via DHCP
M586 P0 S1 ; Enable HTTP
M586 P1 S1 ; Enable FTP
M586 P2 S0 ; Disable Telnet
; Fans
M106 P0 S0 I0 B0.2 F30 H-1 ; Layer FAN Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1.0 I0 B0.2 F30 H1 T50 ; EXTRUDER FAN Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S0.50 I0 B0.2 F20 H0 T35 ; CASE FAN Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
; Custom settings are not configured
M501
/////*
I suppose the part that maters is this but I´m posting all the file in case something else I´m not aware is causing this:
; Endstops a funcionar com sensor (means endstops working with sensor)
M574 X1 Y2 S0 ; Define active low and unused microswitches
M574 Z1 S2 ; O do ZZ
M558 P4 I0 H5 F500 T5000 ; Set Z probe type to switch, the axes for which it is used and the probe + travel speeds F era 120
G31 P400 X28 Y12 Z0.42 ; Set Z probe trigger value, offset from probe to nozzle and trigger height - O trigger height deu 0,41 seguindo o protocolo) Valor Z0.82 com pei Z0.5
M557 X0:300 Y0:200 S50 ; Define mesh grid
I´m using an inductive probe connected to the E0 endstop if I remember well,the led turns off when approaching the bed.
What puzzles me is that the G28 (homeall.g) and the G29 are working well.
What could be the reason for the error message?