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
Search
G-code in a macro:Needs more useful examples and docs
Lee Studley
Hi Todd,
I was wondering this also, at least can I call a function or similar also, I think its a subset of VB scripting and can call some predefined( not user defined (?)) routines Art has setup. The manual covers some specific macros, buts its really murky if your trying to do your own stuff. I'd like to see a bunch of real world examples of macros for Mach2. (Actual scripts with all the content explained). It'd be nice if we could post a 'library' of them in the files section to help all of us. --- In mach1mach2cnc@..., "morgtod" <todmorg@h...> wrote: Hi-mo3, g01 etc. )? If so what is the proper way to enter this info into a |
--- In mach1mach2cnc@..., "Lee Studley"
<indigo_red@q...> wrote: Hi Todd,similar also, I think its a subset of VB scripting and can call somemanual covers some specific macros, buts its really murky if your tryingto do your own stuff.<snip> I agree it's murky! Documenting macros seemed a bit like writing the user manual for a Swiss Army Knife! It would be very helpful if you and others on the Group would like to post explaining what you would like to do in your macros or, perhaps easier, what you cannot do at present in Mach2. For example is it to make MDI easier through less typing, to get round problems with an existing post-processor, to control special features like a part catcher etc. With this sort of background established, I will try to document sone more interesting examples. John Prentice |
Art
Murky indeed...
toggle quoted message
Show quoted text
Macro's were originally designed so I could reuse code, but they didn't work out that way. Instead they are used to create usefrull subroutines for specific purposes. Doc's are a little sketchy. John's idea is a good one, as functions are needed I will add more. This is a troublesome area however, as the macro's are run in a separate thread, so unknown interactions may occur. This is evident in the serial output macro (on my immediate list for repair) in that while it runs in testing mode, it will not transmit during a program run. I will be spending some time to strengthen this over the next little while to allow more complex programs with more stable interaction. I'm attempting to make the main interpreter loop stop until the macro thread is finished. This may cure the serial problem and allow for more functionality. I have many requests for more output, so I am trying to make the macro facility be able to transmit bytes to port addresses unknown to Mach2, this would allow a 48pin IO card, for example, to be configured and used as M-Code I/O no matter what card is desired. It may be the solution for IO required for toolchangers and such. I'll get back to you on specifics as I go. In regards to the question, "Can I execute G-Code in a macro, yes, I believe the command is GCode("G0X0") for example, but I will have to look this up... Thanks, Art www.artofcnc.ca ----- Original Message -----
From: "japrenticeuk" <john@...> To: <mach1mach2cnc@...> Sent: Monday, August 04, 2003 5:08 PM Subject: [mach1mach2cnc] Re: G-code in a macro:Needs more useful examples and docs --- In mach1mach2cnc@..., "Lee Studley" |
morgtod
Hi John,
I am just trying to find if you can issue simple g-code instructions and pile them in a macro, I would like to take standard gcode files and install calls for a m50 macro and have this macro control cut speeds, output signals, dwell times, offsets etc. this way I could alter the macro to make the same g-code file work with different thicknesses, cut speeds, piece times etc. What it boils down to is I would like to know if I could take something you would type into the mdi window and insert it into a macro. Thanks Todd --- In mach1mach2cnc@..., "japrenticeuk" <john@c...> wrote: --- In mach1mach2cnc@..., "Lee Studley"the user manual for a Swiss Army Knife! |
Lee Studley
Sorry, I didnt mean any offense, just needed to de-murkify my self:-)
That's very useful, is it mentioned in the docs and I missed it? -Lee In regards to the question, "Can --- In mach1mach2cnc@..., Art <fenerty@a...> wrote: Murky indeed...--- In mach1mach2cnc@..., Art <fenerty@a...> wrote: Murky indeed...examples and docstrying--- In mach1mach2cnc@..., "Lee Studley" thetodo your own stuff.<snip> exampleuser manual for a Swiss Army Knife! problemsis it to make MDI easier through less typing, to get round awith an existing post-processor, to control special features like part catcher etc. |
Lee Studley
I guess its not really as important as I used to think, the current
toggle quoted message
Show quoted text
activation signals are really all that are required most of the time. I was interested in macros to create custom M commands to control special features particular to a machine like you say. One case was the arc startup delay for a plasma control before I knew about using the dwell Gcode. I was going to use the macro to set the feedrate really low for a time period, then go back to the commanded speed. Then I found the dwell Gcode which made more sense, and then tripped on the the related Mach1 'feature:-)' on the first occurance after a Estop or fresh startup. Art said he killed that rodent in Mach2. But I still think the macro docs are murky nananananaa ;-) -Lee It would be very helpful if you and others on the Group would like |
--- In mach1mach2cnc@..., "Lee Studley"
<indigo_red@q...> wrote: Sorry, I didnt mean any offense, just needed to de-murkify myself:-) Lee GCodeIn regards to the question, "Can Lee("G0X0") for example, but I will have to look this up... I am sure no offence has been taken. The function to execute G-code is documented in manual revision A2 - sadly this is of little use to you as this revision also covers the function key screen selection and XML profiles (as in Release Candidate 7) but, as RC2.2 is still suggested for mainstream use, I have not published it yet to avoid confusion! The function as I have it is: code (LPCTSTR block) and will execute the commands in the string (VB script variable or literal) that would be valid as an MDI line. e.g. code ("F100G1X1Y3") in a macro will feed at 100 units per min to 1,3 Thanks for your input I will definitely improve the explanations - perhaps everyone should have somethink murky in their life though ;=) Best wishes John Prentice |
barker806
The function as I have it is:I have been trying to get the g code to run in the macros as well and have not been successful. I think I am doing it wrong ;o) … Is there anyone having any luck getting it to work?? What I would like to do is change the tool change macros (G00 G53 Z-.1). Thank you Brian |
Art
Actual code is without the paren's as in
toggle quoted message
Show quoted text
code "G0X6" This will execute a move to 6 in X, haven't tried G53 yet. Thanks, Art www.artofcnc.ca ----- Original Message -----
From: "barker806" <barker1@...> To: <mach1mach2cnc@...> Sent: Tuesday, August 05, 2003 2:30 PM Subject: [mach1mach2cnc] Re: G-code in a macro:Needs more useful examples and docs The function as I have it is:I have been trying to get the g code to run in the macros as well and have not been successful. I think I am doing it wrong ;o) . Is there anyone having any luck getting it to work?? What I would like to do is change the tool change macros (G00 G53 Z-.1). Thank you Brian To unsubscribe from this group, send an email to: mach1mach2cnc-unsubscribe@... Your use of Yahoo! Groups is subject to |
morgtod
Thanks John,
Your method works perfect. code ("F100G1X1Y3") Todd --- In mach1mach2cnc@..., "japrenticeuk" <john@c...> wrote: --- In mach1mach2cnc@..., "Lee Studley" sadly this is of little use to you as this revision also covers thethough ;=)
|
to navigate to use esc to dismiss