@oarjjj said in v2.0 consistently increasing probe heights:
M208 Z0 S1 ; set minimum Z
Need to go under Z=0 with contact probe like smarteffector.
@oarjjj said in v2.0 consistently increasing probe heights:
M208 Z0 S1 ; set minimum Z
Need to go under Z=0 with contact probe like smarteffector.
@janjoh I use a simple macro to turn on and off the leds...
Definition in config.g
; LEDS
M950 P1 C"e1heat" Q500 ;use heater 1 outupt for LED
M42 P1 S1
macro LED ON/OFF
if state.gpOut[1].pwm == 1
M42 P1 S0
else
M42 P1 S1
in the video it looks like the fan shroud hits the bed before the nozzle. Also it goes way to slow to probe...
@ignacmc make sure your arms are set in couples and positive oposite to negative on the 6 magballs og the effector, also use nylon spacer and make sure the screws don´t touch the pcb...
on my pictures you can tell by the lenght stickers on the arms and no label on the others.
By doint this wou balance the magnetic fields, other than if you put all 6 positives on one side and all 6 negatives on the other side.
Don´t mind the "stickers" on the magball to arm joint section, it´s a 0.8mm ptfe film to lubriocate the joints
I would try at least one
@Fred-Y I use a ptfe foil to lubricate ball-arm joints.
@janjoh could you show us your setup? and how you manage to attach the accelerometer.
TIA
@Dizzwold why don´t you set up a range of operation
M106 P2 H2 L.3 B.5 X1 T40:65
Will start above 40ºC at 30% of the fan increasing to 100% proportionally until 65ºC is reached
B is 50% jump start
Just play with the T values as you wish
@Drak said in Part Cooling Fan Setup:
M950 F0 C"fan3" Q200 ; create fan 0 on pin fan0 and set its frequency
M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off; Tools
M563 P0 D0 H0 F0 S"Main"
Try this better
@JADoglio
On the M558 you have a typo, with a ; where should be a :
in the G31 no Z offset set either
;Z-Probe
M558 P5 C"^io3.in" H5 A10 S0.01 F600;120 T6000 ; set Z probe type to switch type for Voron Tap (P5) on pins IO_3.in and the dive height (H5)
; Max probe attempt 10 (A10) Accurrcy 0.01 (S(0.01) speed 600 mm/sec (F600)
G31 P500 X0 Y0 Z0
picture of jumpers and fan connector on board....
@JADoglio could be good if you post your probe settings, thats where you should set offset right
not working on a windows 11 pc, no logo attached...
@Branzo said in Thermistor Semitec 104nt config problem:
M308 S0 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8
M950 H0 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
M307 H0 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H0 S500 ; set temperature limit for heater 0 to 500C
if you declared S0 and H0 has the heated bed, need to declare S1 and H1 as the heater
M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.060000e-8 A"Nozzle E0" R4700 ; E3d configure sensor 0 as thermistor on pin e0temp
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 2
M143 H1 S285 A2 ; disable temporarily H1 if temp exceeds 285C
M143 H1 S295 A0 ; heater fault H1 if temp exceeds 295C
M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M570 H1 P10 T30 ; heater fault for 10 seg of 30ºC excursion
tapping lower case makes the system fail to resume previos temp, must be TAPPING, in other cases it does not work properly.
I also added this
; Temperature target loweer than probe temp, warm nozzle
if var.Target_Temp < (var.Probe_Temp) && global.TAPPING = false
var msg = "Extruder temperature " ^ var.Actual_Temp ^ "°C is still too low, waiting until hotend reaches probing temp of " ^ var.Probe_Temp ^ "°C"
M291 P{var.msg} T4
set global.TAPPING = true
G10 P0 S{var.Probe_Temp} ; Set hotend temperature to var.Probe_temp
M116 H1 S{var.Tolerance} ; Wait for the hotend to reach var.Max_Temp
My previos work around was this
M291 P"Pre heating bed and nozzle ..." S2 ; Display new message
M140 S{global.bedProbeTemperature} ; set bed temp and don´t wait for it
M568 P0 S{global.nozzleProbeTemperature} A2 ; set the current tool temperature to variable set probe temp in globals.g
M116 S5 ; Wait for bed and tool temp top be reached
But didn,t work with a single G30, yours do.
@Exerqtor already did, working sort off
if extruder them is higher than 150, it works, and lowers the temp, probes and set it back
if temp is lower that 150 it does NOT heat up to 150
would like to always probe at same temp, in my case 150.
I must call deployprobe.g in other to get it working
@Exerqtor do you think it will work with a smarteffector? I can´t find your M401 to deloy the deployprobe.g in with you set probing temp.
I do see the M402 at the end of the macros
Maybe could set a parametro when declaring the probe of max tool temp to probe or something like that?