Hello Guest it is March 28, 2024, 01:34:31 PM

Author Topic: Laser cross hair tool position.  (Read 50256 times)

0 Members and 1 Guest are viewing this topic.

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Laser cross hair tool position.
« on: March 12, 2009, 12:53:53 PM »
A simple project for a rainy day.

I recently bought one of these laser cross hair pointers on ebay. Unfortunately they are not that well made (what can you expect from China and cheap as chips) the focus ring incorporating a prism assembly is a very sloppy fit in its mounting thread and any movement here alters the cross hair position. After some deliberation I made a clamp which bolts to the Z Axis and grips both the body and the focus ring of the pointer - this makes the whole thing rigid and it cannot be accidentally moved once set. Setting it up is a bit more tricky as the focus has to be adjusted for optimum at mid Z Axis travel, then rotated until the cross is exactly X - Y alligned (although this is not so critical if you are only interested in the center position of the cross) and finally the cross must not move position when the Z Axis is traversed up and down. Two or three goes at milling dust off the mounting and it was perfect. Because the reflectivity of different materials and surfaces varies I have incorporated a polarised disc beneath the pointer and this can be rotated 90 degrees. (The light from these laser pointers is plane polarized and by using a rotatable polarized filter the apparent brightness of the beam can be varied between full on and off - allowing for the optimum brightness to be set)

Thanks to posts by Hood and Greg I added a button to the Mach screen and pasted the modified button script (after carefully measuring the offset between the cross hair and tool position, using the Mach DRO's). Brilliant, it works so well I really don't know why I did not do this sooner. At the moment I am using a battery to power the pointer but a 3 Volt supply and on/off switch will be added tomorrow.

Tweakie.
PEACE

Offline budman68

*
  • *
  •  2,352 2,352
    • View Profile
Re: Laser cross hair tool position.
« Reply #1 on: March 12, 2009, 01:31:47 PM »
I have used this for quite a while now and yes, it's a VERY handy tool to have for quick locations on sheet material and or picking up edges.

The smallest I could get mine was .010" of an inch which is not too shabby but I'd like to know more about your polarizing filter and what you used. I have a glass one from an old camera but haven't cut it yet, may I ask what you used?

The sort of Delrin clamp I used has a through hole for the body and a counterbore for the knurled part and is pushed up into the counterbore and then locked down with the screw so it can't vibrate loose. I actually moved it since these pics were taken, over to the right side of the headstock to get it "out of the way".

I have it powered with a wall wart AC adapter and has been working for a little over a year now.

Thanks for sharing-
Dave








----------------------------------------------------------------------
Just because I'm a Global Moderator, don't assume that I know anything !

Dave->    ;)

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Re: Laser cross hair tool position.
« Reply #2 on: March 12, 2009, 03:13:04 PM »
Hi Dave,

I saw your excellent post when I was researching my project - it just took a while to locate the laser pointer.

I bought the polarizing film as a small sheet. It is laminated plastic and easily cut into the shape required with scissors.

Here is an ebay uk link which will work for a couple of days at least.

http://shop.ebay.co.uk/items/_W0QQ_sopZ10?_nkw=polarising+sheet&_sacat=0&_fromfsb=&_trksid=m270.l1313&_odkw=cnc&_osacat=12576

Tweakie.
PEACE

Offline budman68

*
  • *
  •  2,352 2,352
    • View Profile
Re: Laser cross hair tool position.
« Reply #3 on: March 12, 2009, 03:24:13 PM »
Interesting, I will have to look locally for  that material.

I appreciate the heads up, my friend-  :)

Dave
----------------------------------------------------------------------
Just because I'm a Global Moderator, don't assume that I know anything !

Dave->    ;)

Offline Greolt

*
  •  956 956
    • View Profile
Re: Laser cross hair tool position.
« Reply #4 on: March 13, 2009, 02:16:55 AM »
Tweakie

Just to give you something to think about,  ;D

I have my cross hair laser directly powered from an out-put. No battery or wall plug.

BoB specs say 20 miliamp is available on each out-put pin.  Laser only uses about ten miliamps.

A resistor in series with it just to drop the 5v down to about 3v.

The advantage is that an on-screen button turns the laser on and off.

Also the macro that positions the spindle over the spot also tuns the laser off.

Greg

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Re: Laser cross hair tool position.
« Reply #5 on: March 13, 2009, 03:00:24 AM »
Thanks Greg,

I will try that today and see how it goes.

Tweakie.
PEACE

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Re: Laser cross hair tool position.
« Reply #6 on: March 13, 2009, 10:03:32 AM »
I am being incredibly lazy here but I wonder if anyone would be good enough to help with the VB Script to turn the laser on and off as Greg has suggested.

Thanks,

Tweakie.
PEACE

Offline poppabear

*
  • *
  •  2,235 2,235
  • Briceville, TN, USA
    • View Profile
Re: Laser cross hair tool position.
« Reply #7 on: March 13, 2009, 10:18:12 AM »
Pick an OUTPUT, lets say OUTPUT5, enable it under ports and pins and map it to your PP output Port and pin.

Then in a button put the Following:

If IsOutputActive(OUTPUT5) Then
DeActivateSignal(OUTPUT5)
else
ActivateSignal(OUTPUT5)
end if

scott
fun times

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Re: Laser cross hair tool position.
« Reply #8 on: March 13, 2009, 11:15:17 AM »
Thanks Scott, you are a gentleman.

(I have now found the customization wiki which explains everything but will take some time to digest).
Thanks again and sorry that I am such a slouch.

Tweakie.
PEACE

Offline budman68

*
  • *
  •  2,352 2,352
    • View Profile
Re: Laser cross hair tool position.
« Reply #9 on: March 13, 2009, 12:03:34 PM »
You have helped me as well Scott (once again!) as I'm working on a console and I have a button already lined up for this purpose.

And Tweakie, you saved a fellow slouch from asking yet another slouch-ish question  ;D

Thanks,
Dave
----------------------------------------------------------------------
Just because I'm a Global Moderator, don't assume that I know anything !

Dave->    ;)