Cambio elettronica
-
Thank you very much ! I try as soon as possible.
-
Sorry for my English...
Tried the modification to reverse the endstop “!”, it works perfectly!
Now, to make the printer fully functional with the new RRF 3.2, I have to configure the BLTouch ( problem 1) and make the heater of hotend pre active when switched ON my Duet2 (problem 2).
(PROBLEM 1) BL-Touch Not running good on this test settings
; Endstops
M574 X1 S1 P"!xstop" ;OK configure active-high endstop for low end on X via pin xstop
M574 Y1 S1 P"!ystop" ;OK configure active-high endstop for low end on Y via pin ystop; Z-Probe ( like https://forum.duet3d.com/topic/14907/bltouch-not-deploying-rrf-3-0/5 )
; M307 H3 A-1 C-1 D-1 ; Disable Heater 3 for use with BLTouch (UNNECESSARY)
M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch
M558 P9 C"^zprobe.in" H5 F300 T6000 ; set Z probe type to bltouch and the dive height +
G31 P500 X-7 Y-23 Z0.73 ; set Z probe trigger value, offset and trigger height
M557 X5:230 Y0:223 S100 ; define mesh grid 3x3 punti(PROBLEM 2) At printer ON, when I increase the hotend temperature on PanelDue display, it does not heat up. I need to press the heater icon and turn it ON (red background), after that, does it start to heat up.
In the heatbed, this does not happen, as soon as I increase the temperature and type set, it starts heating immediately. ( red icon turn ON directly )My setting on config.g:
; Heaters
M308 S0 P"bedtemp" Y"thermistor" T100000 B4092 ; configure sensor 0 as thermistor on pin bedtemp
M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
M307 H0 A149.0 C639.9 D1.4 V24.2 B0 ;Valore inserito dopo taratura letto riscaldato
M140 H0 ; map heated bed to heater 0
M143 H0 S101 ; set temperature limit for heater 0 to 101C
M308 S1 P"e0temp" Y"thermistor" T100000 B4092 ; configure sensor 1 as thermistor on pin e0temp
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H1 S290 ; set temperature limit for heater 1 to 290C -
@Gianluca said in Cambio elettronica:
(PROBLEM 1) BL-Touch Not running good on this test settings
What exactly isn't working?
The config looks ok assuming you are using heater3 as the servo pin and zprobe.in as the trigger signal.What do you have in your deploy and retract macros?
What do you have in homeall?
Does M401 and M402 work to deploy and retract the pin?@Gianluca said in Cambio elettronica:
(PROBLEM 2) At printer ON, when I increase the hotend temperature on PanelDue display, it does not heat up. I need to press the heater icon and turn it ON (red background), after that, does it start to heat up.
This is normal. A tool needs to be selected before it can heat up. In single tool printers it's common to add
T0
to the end of config.g to select the first tool at startup so that temp commands can be issued immediately. -
Thanks for your help !
Problem 2: With “T0” to the end of config.g all work perfect.Problem 1: I find the problem: now work all good !!!
; homeall.g
; called to home all axes
G91 ; relative positioning
G1 H2 Z5 F6000 ; lift Z relative to current position
G1 H1 X-235 Y-228 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F6000 ; go back a few mm
G1 H1 X-235 Y-228 F240 ; move slowly to X and Y axis endstops once more (second pass)
THIS IS TE PROBLEM !!! G1 H1 Z-255 F240 ; an old command in RRF2
G90 ; absolute positioning
G1 X110 Y110 F3600 ; Posiziono la sonda al centro del piatto
G30 ; Sondo il piatto con il BLTouch
;ENDThanks again !