Re: Precision Piezo Z-probe Now available. June 02, 2017 10:25AM |
Registered: 8 years ago Posts: 3,525 |
G28 ;home M190 S[first_layer_bed_temperature] ;heat bed M109 S130 T0 ; set extruder temp G32 ;autocalibration - set grid on/off in bed.g M109 S[first_layer_temperature] T0 ; set extruder temp
Re: Precision Piezo Z-probe Now available. June 02, 2017 05:02PM |
Registered: 6 years ago Posts: 8 |
Re: Precision Piezo Z-probe Now available. June 02, 2017 05:47PM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 02, 2017 09:06PM |
Registered: 8 years ago Posts: 517 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 04:46AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 09:39AM |
Registered: 8 years ago Posts: 487 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 02:45PM |
Registered: 8 years ago Posts: 517 |
Quote
DjDemonD
These small pots can wear out. So just to see if that's the issue put a drop of wd40 or something similar on the right pot and then see if you can adjust it. That being said 0.4 is the value most have been set to when I built them. If you can adjust it go to 0.3 for less sensitive and 0.5 for more.
If it really won't work at all you can send it back to me or perhaps remove the pcb and I'll swap one for you.
Re: Precision Piezo Z-probe Now available. June 03, 2017 02:51PM |
Registered: 8 years ago Posts: 517 |
Quote
Moriquendi
Hi Elmo,
The easiest way to measure the setting of the right hand pot is to measure the resistance between the two piezo poles. The right hand pot really shouldn't need any adjustment, if you set it with the tab pointing straight down you should then see a resistance of roughly 400k. These sub miniature pots have a pretty wide deadband and it can be quite easy to lose track of where the tab is.
Please could you try measuring the resistance between the piezo connectors and tell me whether that changes with (gentle!) rotation of the right hand pot.
Idris
Re: Precision Piezo Z-probe Now available. June 03, 2017 02:52PM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 03:02PM |
Registered: 8 years ago Posts: 517 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 03:58PM |
Registered: 8 years ago Posts: 487 |
Re: Precision Piezo Z-probe Now available. June 03, 2017 06:43PM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 06:49AM |
Registered: 9 years ago Posts: 14,664 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 06:52AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 08:36AM |
Registered: 8 years ago Posts: 517 |
Quote
dc42
You may find it helpful to use the R parameter in the M558 command to add a short delay after the travel move before the probing move. We use R0.1 with our prototype delta effectors, in case the probe is triggered by the deceleration at the end of the travel move.
The jerk setting shouldn't matter, because RRF doesn't use jerk during bed probing.
Re: Precision Piezo Z-probe Now available. June 04, 2017 09:04AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 09:18AM |
Registered: 8 years ago Posts: 517 |
Quote
DjDemonD
Yes why not make a macro called run_g29 and add:
Your slow down m codes
G29
Back to normal speed mcodes
Then in your start gcode call the macro using
M98 Prun_g29.g
You might need to add folder structure to the m98 command if it can't find your macro.
I do this on my delta, have the slow down and speed up built in to my bed.g file. You have to remember that's where you need to change your speed/accel/jerk if you decide to run your machine on different settings,not config.g as it will be overridden.
Re: Precision Piezo Z-probe Now available. June 04, 2017 09:38AM |
Registered: 8 years ago Posts: 517 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 09:41AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 09:41AM |
Registered: 8 years ago Posts: 517 |
Quote
DjDemonD
I had this the other day, not sure why it happens but it can be solved by doing G30 at bed centre then G29. The G30 at bed centre resets the z level and is the reference level.
Re: Precision Piezo Z-probe Now available. June 04, 2017 10:00AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 10:12AM |
Registered: 8 years ago Posts: 517 |
;slow down movement to improve accuracy, improve probing and lmit damage in case of head crash M906 X500 Y500 Z500 E800 I60 M201 X250 Y250 Z250 E1000 M203 X15000 Y15000 Z15000 E3600 M566 X100 Y100 Z100 E1200
;restore speed settings to normal printing speeds M906 X1100 Y1100 Z1100 E500 I60 ; Set normal motor currents (mA) and increase idle current to 60% M201 X3000 Y3000 Z3000 E120 ; Accelerations (mm/s^2) M203 X15000 Y15000 Z15000 E3600 ; Maximum speeds (mm/min) M566 X1200 Y1200 Z1200 E60 ; Maximum instant speed changes mm/minute
; Auto calibration routine for delta printers ; Before running this, you should have set up your zprobe Z offset to suit your build, in the G31 ; command in config.g. M561 ; clear any bed transform, otherwise homing may be at the wrong height G31 X0 Y0 ; don't want any probe offset for this G28 ; Home the printer G0 Z2 F2000 ; Get ready for first probe. ;slow down movement to improve accuracy, improve probing and lmit damage in case of head crash M98 PSlowSpeed.g G30 P0 X0 Y0 Z-99999 ; Dummy probe. Just to be safe. Probably not needed with the inductive probe. ; bed.g file for RepRapFirmware, generated by Escher3D calculator ; 16 points, 6 factors, probing radius: 90, probe offset (0, 0) ;restore speed settings to normal printing speeds M98 PNormalSpeed.g G1 X0 Y0 Z250 F15000 ; get the head out of the way of the bed
M190 S60 M109 S130 T0 G32 G0 X0 Y0 Z1 M98 PSlowSpeed.g G30 G29 M98 PNormalSpeed.g G28 M140 S0 M104 S0
G28 M190 S[bed0_temperature] M109 S130 T0 G32 G29 S1 M109 S[extruder0_temperature]
Re: Precision Piezo Z-probe Now available. June 04, 2017 12:10PM |
Registered: 8 years ago Posts: 517 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 12:51PM |
Registered: 6 years ago Posts: 8 |
Re: Precision Piezo Z-probe Now available. June 04, 2017 12:53PM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 05, 2017 06:48PM |
Registered: 8 years ago Posts: 978 |
Re: Precision Piezo Z-probe Now available. June 05, 2017 07:42PM |
Registered: 6 years ago Posts: 8 |
Re: Precision Piezo Z-probe Now available. June 06, 2017 01:21AM |
Registered: 8 years ago Posts: 3,525 |
Re: Precision Piezo Z-probe Now available. June 06, 2017 03:28AM |
Registered: 8 years ago Posts: 487 |
Re: Precision Piezo Z-probe Now available. June 06, 2017 06:07AM |
Registered: 8 years ago Posts: 3,525 |