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! > MetalWorking Machines > Fadal


Fadal Discuss Fadal machinery here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 05-13-2007, 05:01 PM
 
Join Date: Feb 2005
Location: USA
Posts: 143
Shizzlemah is on a distinguished road
Question The "I" macro variable

Hello guys.
I am trying to write a program that uses the I macro variable. Not I as in IJK, this is I as in IO.
Section 18 of the manual says that the I(x) macro will return the state of various inputs to the control and I am looking specifically at I(7), the touch probe state.
(I am aware of and do not want to use G31, G31.1, L9101, etc - simply want to know the status of the probe without making a move)

I've tried a bunch of things to get the value of I(7) into a variable, including
V5=I(7) like written in the manuals, and V5=I7 like referencing a fixture offset "FX3" for example. Anyway, it just keeps barfing on the code telling me that I have an error.

I know there must be a way to accesss these functions, else why would they be in the manual ?

One thing I think of now that I didnt try would be
#IF ( I7 ) THEN GOTO :TURNONPROBE

Any thoughts oh great gurus ?? Maybe my brain just isn't working but I could use a little pointer here!
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 05-14-2007, 10:23 PM
fizzissist's Avatar  
Join Date: Apr 2006
Location: USA
Posts: 2,203
fizzissist is on a distinguished road

I think the easiest thing for us gurus (...place ROFLMAO smiley here...) would be for you to place what code you've got so far here so we can see if it's a simple syntax issue...

Looks to me like I(7) is the probe, an absolute, and changing the number is a hard function change, so you don't really treat "I" like a variable in the sense of assigning a changing value.

Me thinks an If-Then GoTo statement should work, but the TURNONPROBE is where the I(7) would be invoked....

Neil?????
Tweet this Post!Share on Facebook
Reply With Quote

  #3  
Old 05-15-2007, 12:45 AM
Scott_bob's Avatar
Mfg Engineer
 
Join Date: Nov 2003
Location: United States
Posts: 458
Scott_bob is on a distinguished road

another common issue with the Fadal macro is this little command:

WAIT

I forget the proper syntax, but you should be able to see that in your manual. It seems that sometimes the processor needs a delay which the "wait" command provides. Give this a try, remember one change at a time so you can figure out what is going on.
__________________
Scott_bob
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 05-15-2007, 10:27 AM
fizzissist's Avatar  
Join Date: Apr 2006
Location: USA
Posts: 2,203
fizzissist is on a distinguished road

If you have someone else running the parts, you could program in a variable 'G4 Pnn' (pause) command, where 'nn' is set to change relative to the number of cycles, or the operator inputs his age....us older guys get a longer pause...
Haven't figured out how to make it a random number, but that could drive an operator nuts!

Actually, you may have a point, where the system needs some time to react...but since I'm not using my probe that way, I should just shut up and let somebody address this that knows...
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 05-15-2007, 10:44 AM
 
Join Date: Feb 2005
Location: USA
Posts: 143
Shizzlemah is on a distinguished road

Ok guys I can give a little more info for this one. First off this is on a legacy 88HS (which I really like BTW)

The I(x) function is supposed to return a 1 or 0 based on the status of various control inputs. Like : is the probe touching ? is the door open ? is there enough lube in the reservoir ? is the spindle oriented ? toolchanger home ? etc....

I(x) is only an input. Can not assign it a value. Related values: O(x) are outputs, and G(x) is status of modal g-codes.


In my specific application, I have a probe that will turn itself off after a couple of minutes. One of those Renishaws with a centrifrugal switch- to turn it on you run it at 400RPM for a second, then stop and lock the spindle.
When the probe turns itself off, it goes into a "TOUCH" state. When it is on and clear of the workpiece, it is "NO TOUCH".

So my goal is to look at the state of the probe, and if it is on then I don't need to reinitialize it. Not a huge deal but it can save perhaps 10 seconds per part - and there are enough parts to make that savings very attractive.

The I(7) will also let me verify that the probe has turned on. Currently I use a really clunky routine for that, and getting it down to one line would be sweet.

English bastardized code, showing what I'd like to accomplish:
Code:
L0100 (Subroutine: is probe on? if not turn it on
 M6T18 (load probe into spindle
 :IsItOn
 #WAIT;  ( be sure the evaluation is done realtime, not buffered
   IF (probe = touch) then goto :TurnOnProbe
    IF (probe = notouch ) then goto :AlreadyOn
     :TurnOnProbe
     S350 M3
     G4 P1000
     M19
     goto :IsItOn (verify that it turned on)
   :AlreadyOn
 M17 (end of L100)
Would also add something saying after 3 failed attempts wait for the operator, etc.

I have no problem with the gotos, subs, etc. Actually pretty proud about writing smart programs - wrote one last week that probed and identified the workpiece as one of 4 different parts and machined to suit. Just having a devil of a time getting it to acknowledge the I(x) variable!

I have tried the following code with no luck.
#V5=I7 ; letter-number like used with D, P, or FX array variables
#V5=I(7) ; letter-number in parenthesis like the example in the book

I'll give it three more headsmacks before I call Fadal. Mostly cuz I'm embarassed that I am missing like one charachter or something and Neal will laugh at me :-)
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 05-15-2007, 11:10 AM
 
Join Date: Feb 2005
Location: USA
Posts: 143
Shizzlemah is on a distinguished road

If you have someone else running the parts, you could program in a variable 'G4 Pnn' (pause) command, where 'nn' is set to change relative to the number of cycles, or the operator inputs his age....us older guys get a longer pause...
Haven't figured out how to make it a random number, but that could drive an operator nuts!
Not to derail my own thread, buuuuuutttttt:

Code:
#R9=CP
G4P+R9
CP is the clock value for total time the control is on :-)
I use CR (total time in run mode) to generate serial numbers for parts.
CC is the time spent so far on the current part.

HTH!
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 05-15-2007, 06:31 PM
Neal's Avatar  
Join Date: Mar 2003
Location: Chatsworth, Ca
Posts: 889
Neal is on a distinguished road

Shizzlemah--
I don't laugh at people (well maybe a little). Play with this concept:
#v32= I(7)
#IF V32=0 THEN GOTO :CONTINUE
#IF V32=1 THEN GOTO :TURNONPROB
Neal
Tweet this Post!Share on Facebook
Reply With Quote

  #8   Ban this user!
Old 05-16-2007, 01:27 PM
 
Join Date: Feb 2005
Location: USA
Posts: 143
Shizzlemah is on a distinguished road

N1 O1111 (I(X) TEST
N2 #PRINT I(7)

or

N2 #V32=I(7)

or

N2 #V32=I7

or

N2 #O(2)=1

or

N2 #V32 = G(1)

all give me "Illegal Expression In Line"

Anyone have an actual code snippet that I can try ??

This is on version 96.1B4-3 if that matters.


PS: Neal, you can laugh, esp when I order that 4meg ram upgrade!
Tweet this Post!Share on Facebook
Reply With Quote

  #9  
Old 05-16-2007, 02:09 PM
Scott_bob's Avatar
Mfg Engineer
 
Join Date: Nov 2003
Location: United States
Posts: 458
Scott_bob is on a distinguished road

Shizzy,

That's when I'll laugh...
Let's see you could fly round trip 1st class, from New York to LA for what Fadal wants for that 4 Meg upgrade...
__________________
Scott_bob
Tweet this Post!Share on Facebook
Reply With Quote

  #10   Ban this user!
Old 05-16-2007, 11:54 PM
 
Join Date: Feb 2005
Location: USA
Posts: 143
Shizzlemah is on a distinguished road
Actually

I'll be buying the memory - That's the funny part! 4 Meg for the price of 10 Gig. But what can I say, this Fadal makes money and hasn't been down at all in the 2 years it's been here.

Although I'd really freakin' love to save 8-10 seconds on each part with the damn I(7) variable....
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 11-27-2010, 02:00 AM
Chi-town CNC's Avatar  
Join Date: Dec 2006
Location: USA
Age: 34
Posts: 8
Chi-town CNC is on a distinguished road
Buy me a Beer?
Error when trying to #PRINT I(7)

I have 4 fadals in the shop. 2 of them give an error when #PRINT I(1) for example is programmed. 2 of them work fine. Of the 2 that display the value, one is a CNC 88 HS and the other is a "Multi Processor CNC" that I am unsure of its actual model. The remaining 2 that don't work are CNC 88 HS.

All four of the machines can use Macro language, so I'm a bit stumped too. Factory Option???
__________________
Jet engine is next!
http://www.floridaame.org/GalleryPages/g1m0186.htm
Tweet this Post!Share on Facebook
Reply With Quote

  #12   Ban this user!
Old 11-27-2010, 09:30 AM
 
Join Date: Mar 2010
Location: milwaukee,wi,usa
Age: 31
Posts: 225
alex gitzel is on a distinguished road

it may have something to do with want version software and cpu are in the machines,sometimes the factory had to write several verisons of software untill all the little glitches were corrected.look at the cpu and see what type it is and what software module is on it.
Tweet this Post!Share on Facebook
Reply With Quote

Reply




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
"low end" HF Spindle or "high end" router for about $1000? biomed_eng DIY-CNC Router Table Machines 14 01-06-2012 01:15 AM
Macro to read machine "power on" jakk100 G-Code Programing 9 04-12-2007 10:15 AM
Macro alarm "009 ILLEGAL ADDRESS INPUT" theemudracer Fanuc 7 12-26-2006 10:57 AM
"A" Axis Substitution Macro Programming For Fanuc xleng G-Code Programing 5 12-08-2006 02:52 PM
Add "View New Posts" to "Main Menu" Mr.Chips Forum Questions or Problems 4 04-21-2004 11:54 PM




All times are GMT -5. The time now is 10:12 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