Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- MachCNC
- Messages
Search
Re: Latest KeyGrabber release
Les Newell
Hi Olivier,
toggle quoted message
Show quoted text
The big problem is that I can't find anything that has changed. I am using the PostThreadMessage Windows API call to send key strokes to Mach2. For some reason it takes a very long time for this function to return. I have not changed anything about the way I am calling the function so I don't know why it takes longer now than it did. Nothing I have tried has made any difference. Once Art adds the pipe code to Mach2 I will be able to do away with this call. Pipes seem to have a very low latency and my tests show a virtually instantaneous response to joystick movement. Les Digital audio Pro wrote: It's funny i just sent you a message about this. But why is it so slow now ? |
Re: Homing problem in 4.0 release
Art
Thanks Olivier.
toggle quoted message
Show quoted text
I had already seen this one. I'm looking into it.. Thanks, Art www.artofcnc.ca ----- Original Message -----
From: "audioprocess" <digitalaudiopro@...> To: <mach1mach2cnc@...> Sent: Thursday, February 26, 2004 3:54 PM Subject: [mach1mach2cnc] Homing problem in 4.0 release Art, i just installed 4.0 release, and was surprised to see the |
Re: G2002 vs. G2003
Art
Don:
There is only a G2002, the G2003 is a concept in the works as an expanded 2002. The 2002 stated as a cube and ended up a slab, but its the same function. Mach2 supports only the slab version of the 2002. (Perhaps its me who screwed up, I may be behind the curve here as I've been far too busy to keep up.. Art www.artofcnc.ca |
Re: G2002 status ? G2002 reply
Art
Ron:
plate? Ive got a full interactive Mill program ready to run as soon as I canArt, you havent mentioned the OCX recently- is that revision still on your get an OCX. As of next version the OCX should work fine. Just tested it last night from VB, no trouble. Will release soon.. Art www.artofcnc.ca |
Re: "Look Ahead"
Art
Hi Bill:
Yes, G61 and G64 switch between the modes. The lookahead is automatically allocated in the latest versions. There is a DRO to set it, I'll have to look it up, but it won't increase your performance to change it I don't think. Mach2 uses a strange look ahead. It decides how far to look ahead based on the type of code it sees. If a lot of G1's are in a line, then the lookahead is 50 ahead, but if there is only 10 g1's and then a G0, then only 10 lines lookahead are used beacuse it doesn't make sense to look at a g0 after G1's. There a few rules built in here as a result of multiple test releases of various ways of doing this. Current method seems to be most efficient with few problems reported. CV is always a compromise, but I have tried to make it an intelligent one... Art www.artofcnc.ca |
"Look Ahead" is called what in Mach2?
Bill C.
So what is the feature that will allow Mach2 to be successful
coutour software? I cannot find anything in the manual that even refers to a "look Ahead" feature (G51) nor anything that resembles it. What am I overlooking? Do you configure CV to act as a look ahead? How? Bill Clemens |
Re: Tool set switch
Art
Mike:
What you need is a probe command and a probe input (Digitize). In a macro button, you would put a code( " G32 Z -10 " ) // set the Z number to the max you want to drop in case of error. If the switch is hooked to the digitize input, the Z drop will stop when the switch gets activated. Make sure you have room for a deceleration of the axis. Then you need a code( "G92Z0") to set the Z axis to zero, then an code( "G0Z3") to move to 3 inches up, then a code( "G92Z0") to set it back to zero. So the whole macro button would be similar to: code "G32Z-10" code "G92Z0" code" G0Z3" code "G92Z0" I haven't tested this , but it should do the job. Just make sure your switch is triggering the digitize input else it won't work and you'll drive into the table.. Art www.artofcnc.ca |
Re: Tool set switch........pleeeeeese!! :)
This sounds like about the same macro that I use for THC.
toggle quoted message
Show quoted text
You will need a DRO to enter the switch travel distance, other that that I could modify it to do what you want. You would want to have the switch use one of the Limit switch inputs. The probe ( move down until the switch makes ) move back up the switch travel distance and zero the Z-axis. Contact me off list and I'll see what I can do. Jim Jim ----- Original Message -----
From: "guzakaka" <nonna01@...> To: <mach1mach2cnc@...> Sent: Thursday, February 26, 2004 1:35 PM Subject: [mach1mach2cnc] Re: Tool set switch........pleeeeeese!! :)
|
Re: Tool set switch........pleeeeeese!! :)
Hi Bill, and thanks for replying. I am actually using an omron micro
switch with my plunger system attached to it. Typically these switches have given between .005" and .010" which is more than adequate for my needs. I had hoped to wire it as the -Z reference but I don't want the 0.0 to be at the switch but say 3" above that point. I don't know where the actual point will be yet till I get the switch wired and programed. Any help will be appreciated. Mike ps bar chord....hmm you play?? --- In mach1mach2cnc@..., "barrchordbill" <billjames@c...> wrote: Mike,to thatgetmachinethe program to do what I want. So here goes with what I want to thispoint and then automatically set the z dro to 0.0. Can this be inthetip of each tool will be at the same point over the table and sorunsdoing will make my setup time much shorter. I only run 1 partathavea time and may have as many as 5-6 tool changes. Since I don'ttoolatc this causes quite a bit of time at the machine setting theoffset. |
Re: Tool set switch........pleeeeeese!! :)
barrchordbill
Mike,
What type of switch are you using, how is it interfaced to the control, and what kind of accuracy are you looking to achieve? Bill --- In mach1mach2cnc@..., "guzakaka" <nonna01@e...> wrote: length knowwithin the program or through a macro. My problem is I don't howmachineto write macro's nor do I know how to set the switch settings togetthe program to do what I want. So here goes with what I want to solower the tool onto the switch, move up a given amount from thatthe runsdoing will make my setup time much shorter. I only run 1 part athavea time and may have as many as 5-6 tool changes. Since I don't toolatc this causes quite a bit of time at the machine setting the offset. |
Homing problem in 4.0 release
Art, i just installed 4.0 release, and was surprised to see the
homing was not working perfectly like before. it's not a big problem but : After X referencing for example, the DRO should give X = 272 mm, according to the setings in the setings screen. but in fact he gives 271.998 mm. Why ? It's certainly because of your modification in the 4.0 release. Regards, Olivier. |
Re: Tool set switch........pleeeeeese!! :)
Anyone???????????---I am not opposed to begging if necessary!! :)
Mike In mach1mach2cnc@..., "guzakaka" <nonna01@e...> wrote: Art or anyone, I have made a switch appratus to set the tool lengthhow to write macro's nor do I know how to set the switch settings toget the program to do what I want. So here goes with what I want tothe tip of each tool will be at the same point over the table and in soat a time and may have as many as 5-6 tool changes. Since I don't have |
Re: ocx and VB6 Errors
Les, the keygrabber version in mach2 version 4.0 don't work for the joystick
mode. there is a very very long delay (about 2 secondes) as i said to you some times ago. Each time i upgrade mach2 i have to overwrite with an older keygrabber beta version. Could you take a millisecond of your spare time to see this :=) ? Best Regards, Olivier |
Latest KeyGrabber release
Les Newell
Hi all,
I have just released the latest version of KeyGrabber, V3.9. There are only a couple of minor bug fixes ompared to the version supplied with Mach2. Olivier, I am afraid that joystick response is still very slow. When Art gets the time he will make some changes to Mach2 which should drastically improve the response speed. This release can be found in the files area of this group. Les |
Re: Dat file
INDECO
Art,
toggle quoted message
Show quoted text
I used the .BAT file and it worked!!! But... my monitor does not show all the screen...I have tried all of the "set" files but to no avail...any suggestions? Robin PS...I need to learn how to make the screens. ----- Original Message -----
From: Art To: mach1mach2cnc@... Sent: Wednesday, February 25, 2004 5:56 PM Subject: Re: [mach1mach2cnc] Dat file Robin: Yes, you can use the license on another computer as well. Try the alternative driver, run the SpecialDriver.bat file on the troublesome computer. It may help. Thanks, Art www.artofcnc.ca ------------------------------------------------------------------------------ Yahoo! Groups Links a.. To visit your group on the web, go to: b.. To unsubscribe from this group, send an email to: mach1mach2cnc-unsubscribe@... c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. |
Re: Axis Drive using Timing Belt.
mark_reust
That is what I use on my 50"*98" gantry that I just finished. I use
servo motors and Gecko 340's. The servo motors are mounted to 50:1 gear reducers with .375 pitch belt 1" wide on 18 tooth pulleys for the X and Y. The only thing I noticed is that there is a little back lash in the reducers (used off of E-Bay). I have done test cuts at 50- 100 ipm for straight line moves and arcs or I can photo engrave at 5- 20ipm. It delivers more than enough cutting force. It is also very smooth when I use the CV function for cutting small point to point contours.(NURBS Splines) So far so good....... Mark |
Re: Downloads page.
--- In mach1mach2cnc@..., "Bloy2004" <jmnotions@c...>
wrote: --- In mach1mach2cnc@..., "stevenson_engineers"still 4.0shows old one. ooops.... Wrong person....sheeesh!(as I knock myself on the head)about 4 days ago OK so if anything cache should show this.John...I checked the site. |
to navigate to use esc to dismiss