![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| Haas Mills Discuss Haas machinery here! |
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| |||
| |||
Hi everyone......this week I have had a Renishaw probe fitted to my Haas VF3 Mill. I wish to print the probe results/findings and can't get this feature to work. I have connected a cable from the RS232 port on the back of the machine directly to a serial printer (not pc) and have placed a W1. on the probe programs lines I wish to be printed. Any suggestions greatfully recieved... |
|
#2
| |||
| |||
| I do this from time to time and have no problems , check the serial port for same parameters on mill and (not) PC ( speed, parity , bits , stop bits ) use the upper serial port on the machine , when only one thing does not fit all wont work ( check the RTS/CTS I had a problem last time with this ) try to send a program from "list prog" via "send rs" if this work the probe should too. Peter |
|
#5
| ||||
| ||||
| I believe you need to use the DataCollect feature and you can rs232 the info to a computer. I am actually interested in doing this also, but am not using an rs232 cable setup, so I haven't done it yet. Seems pretty straight forward in the manual, though. You just specify which variables you want written in the program you write and it sends those out. I have a friend who does this a lot on his Mazaks and it is the bees knees.
__________________ Tim |
| Sponsored Links |
|
#6
| |||
| |||
| Very timely thread. I just got done posting the below question on another forum...I'll repost it here in hopes we can get some more specific answers. This topic has been touched on in the past, but no specifics were ever given, just that it's possible. Simply put, this is what I would like to do, in order of preference: 1) Probe feature (data is stored in variable #123) 2a) Transfer #123 to cell C4 in existing Excel inspection report spreadsheet 2b) Transfer #123 to cell ?? in blank spreadsheet, then link that cell to cell C4 in existing inspection report spreadsheet 2c) Physically print Renishaw inspection report using W1 / W2 inputs in probing cycles 2d) Physically print #123 using Haas DPRNT funtion For 2a and 2b, I'm unsure if this can even be done, and if it can, if I would use W1 / W2 in the probing routines or DPRNT to do it. To make matters worse, I have absolutely no experience with RS232 cables. Would I need DNC software to do any of this? I transfer programs to the machine via a USB stick currently. |
|
#7
| |||
| |||
| Here is the old thread that I brought up on the subject. The link was broken by the mods at impractical machinist: http://www.cnczone.com/forums/haas_m...n_w_probe.html |
|
#8
| |||
| |||
| Here's my solution - called CNC Reporter - has built in RS232 comms to get data out "real time" from the machine into Excel. YouTube - CNC Probing & ReporterThis demo was on a Robodrill - but it's pretty much the same for the Haas. It works off the shelf with the Renishaw Inspection Plus W1/2 function. I supply some VQC templates for Haas machine tools so you can program using Visual Quick Code and run in either MDI or embed into programs. You can see a closer view of the reports here: YouTube - CNC Reporter |
|
#9
| |||
| |||
| Matt do you remember the one guy that wrote macros to probe a part on his machine by using small circles? ( early last year)was it KEVIN? that guy new alot about the probe system my opinion he was a f'n genius with the probe system. hopefully he chimes in on this subject. Most HFOS including HAAS in ca. dont know a rats behind about how the system works other than finding tool heights/diams and findin XYZ on the part. I havent called renishaw and asked them for a step by step, but they have sent me a few manuals to help, the only problem is I hate to read LOL I like to be shown or have it explained to me. It would be great if we could keep this topic going and get some input from guys that know how to measure parts (odd shapes) and put them into numbers via print on a pc. Maybe use somethign standard as a demo that we could all relate to like a hard jaw taken off a kurt angle lock vise? would be pretty cool to see how to write a macro on checking the holes the widths counter bores and lenths even the hieght and spit out the numbers. then the guys that dont know how to do it can learn by example.? Delw |
|
#10
| |||
| |||
| it wasnt kevin it was pit202 http://www.cnczone.com/forums/haas_m...lar_shape.html heres another link also on printing http://www.cnczone.com/forums/haas_m...32_output.html maybe the admins could throw all the probing info into a subforum? Delw |
| Sponsored Links |
|
#11
| |||
| |||
| I'm a metric man, so bear with me... Basic Renishaw Inspection Plus tutorial Measure a 50mm diameter hole with 4 points (+X,-X,+Y,-Y) at X10. Y10., Z-5mm down the hole: G65P9810X10.Y10. G65P9810Z-5. G65P9814D50. Now add printing: G659814D50.W1. Now add a size tolerance of +/-0.1: G65P9814D50.H0.1W1. Now add a true position tolerance of 0.2 G65P9814D50.H0.1M0.2W1. Now update a Tool Offset (Tool 1): G65P9814D50.H0.1M0.2T1.W1. Now add a NULL BAND (cos you don't want to keep updating the tool everytime - that would be BAD) A Null Band is a tolerance of say +/-0.05 within which no Tool Offset is updated: G65P9814D50.H0.1M0.2T1.V0.05W1. Now add a percentage feedback, as really you want to dampen the effects of any tool feedback. A percentage feedback will only update the tool offset by a percentage (say 75%) of the measured deviation: G65P9814D50.H0.1M0.2T1.V0.05F0.75W1. Now lets measure another hole of diameter 25mm at X50.Y50. - this time with 3 points. We can specify the degrees of each point. 0 degrees is the +ve X direction. So let's do equispaced points (120 degrees spacing). G65P9810Z5.0 G65P9810X50.Y50. G65P9810Z-5. G65P9823A0.B120.C240.D25.H0.1M0.2W1. The problem here is that the 2 positional measurements are relative to the Active Work Offset - NOT to each other. So how do we do that? G65P9810X10.Y10. G65P9810Z-5. G65P9814D50.H0.1M0.2T1.V0.05F0.75W1. G65P9834 (sets start point to centre of previous bore (line above)) G65P9810Z5.0 G65P9810X50.Y50. G65P9810Z-5. G65P9823A0.B120.C240.D25.H0.1W1. G65P9834X40.Y40.M0.2W1. (where X & Y values are incremental distances between points). THIS IS BASIC - with a basic shape - but once we change the 9814 to something else we can measure different features. We can then start to build on this - capture different points - do some maths - create loops etc.. It can get pretty powerful. The key element is to start simple. We can turn off machine alarms (these will annoy you), make decisions, work out material conditions, take averages, max/min, compare against stored data, update rotary axes, check machine condition, is the part moving in the fixture, are my roughing tools leaving on the RIGHT amount of stock before finishing or am I updating my finishing tools and diminishing their life early to compensate for poor roughing control, where's my pivot point on my 5 axis machine REALLY (cos that stamped plate on your machine is out of date) etc.. Personally I would not update a tool from one single feature so we can do stuff there also. Remember - the trick to eating a whole elephant is to take one bite at a time - and there is a big elephant in your machine shop and it needs to be eaten - don't ignore it. Apologies to those who are already sucking eggs... |
|
#12
| ||||
| ||||
| First of all, Guypb...do you get out much!? Thanks for that post. I agree that we all have that elephant in our shop and most don't use it for all it is capable of. This type of thread is excellent for those of us who want to take it to the limit. Your spreadsheets look awesome!
__________________ Tim |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| HASS VF-2/ RENISHAW PROBE | CLEVELAND23 | Haas Mills | 10 | 11-01-2010 08:25 PM |
| Renishaw OMP 40 Probe | twitte | CNC Machining Centers | 3 | 06-23-2010 11:52 PM |
| Newbie- Renishaw probe | inertialabs | Haas Mills | 16 | 05-25-2009 05:54 PM |
| Renishaw probe cycle input question: Printing | Matt@RFR | Haas Mills | 5 | 06-11-2008 11:23 PM |
| Mp7 Renishaw probe | Cncjunkie | CNC Machining Centers | 5 | 02-02-2006 09:13 AM |