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 > Machine Problems, Solutions , Wireless DNC, serial port


Machine Problems, Solutions , Wireless DNC, serial port Need help with your Machine or need a Machining solutions for , Serial Port, Cable problems between PC and all others DNC problems disucss them here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 06-17-2005, 02:05 PM
 
Join Date: Apr 2005
Location: USA
Posts: 3
opua is on a distinguished road
Bandit level II~help requested

My first post to the board so bear with me.
I have an older knee mill with a Bandit level II controller and minimal documentation, I have a basic understanding of G code and a good grounding in manual machining. I understand that the documentation for Bandit controllers improved after Allen-Bradley toook over from Summit in the '80's
Has anyone a copy of this or any other source of documentation that might assist a beginner?
Many thanks.
Paul
Reply With Quote

  #2  
Old 06-17-2005, 08:42 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

I don't know if Allen Bradley rewrote the book for the Bandit. I used to run them, and might be able to help you out with a couple of pointers.
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #3   Ban this user!
Old 06-29-2005, 07:44 AM
 
Join Date: Sep 2004
Location: USA
Age: 40
Posts: 220
fastolds is on a distinguished road

I have a manual for a bandit controller but not sure which model. It was from an old machine I learned cnc on many moons ago.
Reply With Quote

  #4   Ban this user!
Old 06-29-2005, 01:06 PM
Karl_T's Avatar  
Join Date: Mar 2004
Location: Dassel,MN,USA
Posts: 1,318
Karl_T is on a distinguished road

These folks would also have what you need
http://www.machinemanuals.net/

I used to program a bandit. Nice simple to use control. You'd best learn about parametric programming. (loops conditional statements etc) as you've got a very small memory space to hold a program.

Karl
Reply With Quote

  #5   Ban this user!
Old 06-29-2005, 04:20 PM
Karl_T's Avatar  
Join Date: Mar 2004
Location: Dassel,MN,USA
Posts: 1,318
Karl_T is on a distinguished road

> Thanks for your response, will try the link you provided. My greatest challenge is severe lack of knowledge and absolutely minimal experience. I have a Shizuoka knee mill with a level II controller and have managed to get it to run thru most [but not all] of the canned cycles These are at least explained with keyboard entry sequences in the small amount of documentation I have.

FIRST, I'M GREEN WITH ENVY OVER YOUR MACHINE!!! I've always wanted one of these. Have you got a tool changer?

>
> I drew a very simple part in Autocad with three holes of differing diameters in a triangular part with radiused corners concentric to the holes and a friend converted this to bandit code thru his mastercam post processer.
>
> Thus armed with correct code [assumed] I figued, OK all I need to do is establish part zero, tool offset and punch in the first group of code in MDI and I'd be rolling, well all that taught me is I still really don't know or even understand diddley squat. If you can take a brief look at this first group of code and point me in the right direction I'd be really grateful.

First, I'd tell to learn to walk before you run. You're trying to learn three packages at once. Just learn Gcode first. Then do the same thing with mastercam, then learn to input cad drawings.


>
> Part zero is top LH corner of a rectangle slightly larger than the part, single tool 3/16" dia center cutting endmill, tool offset 0.5" code for the first hole closest to part zero is below.Text opposite is what I think the code means. [I think this group should drill a 3/16" hole .13" deep then move to the 2nd hole center]
>
> N1G90 absolute
> N2T100 tool 1
> N3/X.6499/Y-.435 move from 0,0 to center of hole

I think this should be: N3 G0 X.6499 Y-.435

> N5/Z.5 quill moves UP 1/2"

I don't think bandit uses / make it N5 Z 0.5

Also, ITS REAL SMART to move up first then over

> N6/Z1. quill moves UP another 1"
> N7F14.4 feed rate 14.4 ins/min
> N8Z-1.13G81 tool moves down 1.13" in drill mode ,doesn't reach the part as it previously moved up 1.5" ?

I'd write this N7 G81 X.6499 Y-.435 Z-1.13 R0 F 14.4
N13 Y -2.935
...
I'd also learn with a slow feed maybe 1.0 Breaks less stuff.

>
> N10/X.6499/Y-.435 center of first hole
> N13/Y-2.935 Y co-ordinate 2nd hole center
> N15/X4.6499 X co-ordinate 2nd hole center
> N16G80 cancels drill mode
> N19/Z1.
> continues
>
>
> You'll probably shake your head over this, as I don't know whether I should hit enter, store, start or step at the end of each line/
>
> Line 8 won't accept the G81 after the Z- entry and if I enter line 10 followed by start the table will contine to move diagonally in XY minus until I hit the e-stop or reset to prevent it hitting the stops.
>
> I haven't a clue how to execute this string even if I could sucessfully enter it.
>
> I'm located in the far west of Washington State and CNC related resources are pretty thin on the ground, especially anyone with Bandit experience. and I've not been able to find a guide to bandit programming as yet.
> I could send you the dxf file of this simple part if that is of use?
> Anyway there it is, I never thought it would be easy but it is just frustrating at the moment. Is there a book for complete CNC dummies?

I remember the banidt manual was a great programming training section. There are TONS of others.
Reply With Quote

Sponsored Links
  #6  
Old 06-29-2005, 04:38 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

"/" means "rapid" in Bandit speak.

In Bandit, the Gcode name comes at the end of the line, not at the beginning. I don't believe it uses an R plane either, its got to be newer (like a Shadow) to do that. Feedrate needs to be on a seperate line before the move in question.

Canned cycles are initiated by the first axis move after the G81 command line. An XY move should not be included on the G81 line, only the Z depth (which is reckoned as an incremental distance)

If your tool is already parked where you intend to drill the first hole before calling the canned cycle, then use a dummy move to initiate the cycle motion. For example
/Z0 G91
would be an incremental dummy move that does not cause any motion, yet the control will accept it and execute the canned cycle at the current location.

A multi-word command line such as /Z-.1 G81 is entered as
/Z-.1
[ENTER]
G81
[STORE]
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

Last edited by HuFlungDung; 06-29-2005 at 07:01 PM.
Reply With Quote

  #7   Ban this user!
Old 06-29-2005, 05:33 PM
Karl_T's Avatar  
Join Date: Mar 2004
Location: Dassel,MN,USA
Posts: 1,318
Karl_T is on a distinguished road

You'd best listen to HungFlungDung

I did bandit maybe 20 years ago. Don't remember much anymore. My commands are for fanuc and compatible controls.

Sorry

Karl
Reply With Quote

  #8   Ban this user!
Old 06-29-2005, 10:54 PM
 
Join Date: Feb 2005
Location: USA
Posts: 49
harolda is on a distinguished road

bandit does not use g0 use slash instead
Reply With Quote

  #9   Ban this user!
Old 06-30-2005, 03:30 PM
Karl_T's Avatar  
Join Date: Mar 2004
Location: Dassel,MN,USA
Posts: 1,318
Karl_T is on a distinguished road

HEY

Are you the same Harold I sold my Bandit to? (I think so) This guy needs the manual.

Karl
Reply With Quote

  #10   Ban this user!
Old 07-04-2005, 12:58 AM
 
Join Date: Feb 2005
Location: USA
Posts: 49
harolda is on a distinguished road
Yes it is the same harold

Books went down the road with another machine
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 07-08-2005, 10:18 PM
 
Join Date: Jun 2005
Location: USA
Age: 59
Posts: 21
shovelitdeep is on a distinguished road

This won't be much help. I learned programming on a Bandit in San Mateo California in the early eighties. The mechanic thet worked on the three in the shop told me that the one was the first Bandit sold in Silicon Valley. For some reason, my foreman programmed only in incremental mode, and almost never used G codes, drill cycles, etc. I think that it was because nearly everything that we made was smaller than a nickel, and used drills and end mills down to .008" dia. I was pretty good at programming and stuffing nested subroutines into 999 lines, when I got a job after the shop closed, but I eventually learned the G codes also. I think that I also have an old Bandit book, but it likely won't help much. shoot an e-mail and I will try to find it. Rich
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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bandit Control ? jdelaney44 Bridgeport and Hardinge Mills 3 03-06-2005 08:36 PM




All times are GMT -5. The time now is 07:14 AM.





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