CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > Fanuc


Fanuc Discuss Fanuc controllers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 05-22-2009, 01:09 PM
 
Join Date: May 2009
Location: Canada
Posts: 9
CNC3P0 is on a distinguished road
How/Where to save macros

Hi all,

I'm teaching myself to write G Code on a Fanuc controller and am getting a pretty good handle on it (thanks in large part to the forums at CNCzone). I want to incorporate macros so I can use variables and logic statements but I can't figure out or locate information on one important item: where and how do you save a macro in order to call it later in another program? LOts of info in manuals and forums on how to write macros... no info on what to do with them once they're written.

Hope you'll take my elementary question with grace and good humour.
Thanks for your help.
Reply With Quote

  #2   Ban this user!
Old 05-22-2009, 01:54 PM
 
Join Date: Mar 2005
Location: Silicon Valley, CA
Posts: 982
psychomill is on a distinguished road

If these are macros you always want on the machine, then just give it a program number and save it on the control just like any other program. Then when you use it, you can call it up by G65, G66, G66.1 (if you're passing values through) or you can use an M98 sub call (if you're not passing values through).
__________________
It's just a part..... cutter still goes round and round....
Reply With Quote

  #3  
Old 05-22-2009, 02:41 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 16,539
Al_The_Man is on a distinguished road
Buy me a Beer?

What controller do you have? You can save and hide them if making them 9000 macro's.
These can be write protected by parameter so that they do not inadvertently get erased.
Al.
__________________
CNC, Mechatronics Integration and Machine Design.
“Logic will get you from A to B. Imagination will take you everywhere.”
Albert E.
Reply With Quote

  #4   Ban this user!
Old 05-22-2009, 05:07 PM
 
Join Date: May 2009
Location: Canada
Posts: 9
CNC3P0 is on a distinguished road

Our manual says Fanuc Series Oi-MB... as for entering programs, we use Microvellum and ACAD. I'm learning code to get around the limitations of using those programs. I can write macros in a .txt file, but then where do I save them into the controller in order to call them later? I can also program G-code through the Fanuc CNC screen display function but can't seem to save them.

Thanks for your help and patience...
Reply With Quote

  #5   Ban this user!
Old 05-23-2009, 04:16 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

A macro is just another program. You save them all in the same place. If you give them program numbers from O8000 to O9999 they can be "locked" to prevent editing and/or erasing them inadvertantly.

Your DIR might look like this:

O1000 (MAIN PROGRAM)
O1001 (SUB #1)
O1002 (SUB #2)
O8101 (BOLT-HOLE CIRCLE MACRO)
O8102 (GRID MACRO)
O9101 (TOOL CHANGE MACRO)
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 05-25-2009, 09:15 AM
 
Join Date: May 2009
Location: Canada
Posts: 9
CNC3P0 is on a distinguished road
Ah so!

A macro is just another program. You save them all in the same place. If you give them program numbers from O8000 to O9999 they can be "locked" to prevent editing and/or erasing them inadvertantly.

Ah ha! I thought it might work something like that. I will try to find that directory and write something small today. I'll let you all know how it goes.
Reply With Quote

  #7   Ban this user!
Old 05-25-2009, 09:42 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

"that directory" is just your control's program memory. Whenever you EDIT a program, it's in that directory.
Reply With Quote

  #8   Ban this user!
Old 05-28-2009, 12:38 PM
 
Join Date: May 2009
Location: Canada
Posts: 9
CNC3P0 is on a distinguished road
still looking for that directory...

Well, while I get the idea, I can't find the directory that contains programs within the controller. Generally I load files from the company server through the CNC Screen display. If I edit or write programs, I do it through Notepad (text editor). Even programs that I use regularly like surfacing are called from the server.

So in order to call a macro, it needs to be in the controller's memory, right? I've gotta figure out how to load programs straight to the controller's memory, though my manual is offering no real useful help and all I know how to do is run programs from the server
Reply With Quote

  #9   Ban this user!
Old 05-28-2009, 09:20 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

If you press OFFSET/SETTING, then [SETING], what is your I/O CHANNEL set to?
Reply With Quote

  #10   Ban this user!
Old 05-29-2009, 01:10 AM
 
Join Date: Feb 2006
Location: United States
Posts: 273
dpuch is on a distinguished road

CNC3P0, Either there is a real communication glitch here, or your missing an important chunk of information we are taking for granted. (like ONLY ever used DNC modes...)

Put the control in EDIT or MEMORY mode. Then press the PROG soft key, the the DIR soft key. That should be a pretty standard way to view the list of programs stored on your control.
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 05-29-2009, 06:56 AM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

If you are loading programs from a company directory to the control then you are loading them into memory. Do the macro the EXACT same way as you would a normal program. Say you write a macro and it's program O5000. Once you load it to the control you can use it as a macro/subprogram. All you have to do is in your main program call it up either by a M98 subprogram call or a G65P5000 macro call.

Now if you want to load them as a protected programs as Al stated which I always do, you make them a 8000-8999 or 9000-9999 program numbers. You will have to make sure the protection bit is not activated in order to load these program numbers. Once they are loaded then you lock them out. On this series control the parameters for locking them are:
#3202.0 for the 8000-8999
#3202.4 for the 9000-9999

Stevo
Reply With Quote

  #12   Ban this user!
Old 05-29-2009, 09:38 AM
 
Join Date: May 2009
Location: Canada
Posts: 9
CNC3P0 is on a distinguished road
almost there

Morning all,

@ dcoupar: My I/O channel is set to 4.

@ dpuch: Yes, I have only used DNC mode. I am attempting to learn to program this machine myself without the aid of formal training, manuals, etc. It's all by way of forums, e-books, and trial and error.

Now, I've located the directory of programs by entering MEM mode and pressing PROG and then DIR... but how do I add a program to this directory? I understand now that a macro is just a program in this directory, called with an M98 or G65, but how do I store this program in the controller permanently?

@Stevo1: When I run programs from the company directory, I'm loading them into the controller, but as soon as I load a new program, the old one is gone. Will this change if I name my program "O8000.anc" instead of "16mmMaple.anc"? Does it know to keep the one named "O8000.anc" and discard the one named "16mmMaple.anc"?

THanks for all the help...
Reply With Quote

Reply

Tags
controller, fanuc, macro, save




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help!- X3 CNC macros trainfred Syil Products 6 05-20-2008 07:42 PM
Need Help!- help with macros gj83 General CNC (Mill and Lathe) Control Software (NC) 2 04-11-2008 08:42 PM
Need Help!- macros bob@apc Mazak, Mitsubishi, Mazatrol 2 02-04-2008 11:42 AM
Help with macros afterburn25 Haas Mills 4 04-09-2007 08:19 AM
macros toyoda General CAM Discussion 0 05-30-2004 04:56 AM




All times are GMT -5. The time now is 09:46 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361