View Single Post
  #1   Ban this user!
Old 08-20-2004, 07:46 PM
larrynsr larrynsr is offline
 
Join Date: Aug 2004
Location: USA
Posts: 7
larrynsr is on a distinguished road
Bridgeport Interact 412/Heidenhain TNC 151 HELP?

Hi,

I am a new student learning CNC programming/machining. I am working on a Bridgeport Interact 412 VMC with the Heidenhain TNC 151 controller, and using MasterCam Version 8. So far everything is going well, except for one problem.

The manual says that the Heidenhain has two running modes. One mode is “Program run 1-block,” (top row, middle button) meaning that it will run one block of code at one time. In order to advance to the next line of code, I will have to push the “cycle start” button. This I understand.

The other mode is “Program run-full sequence,” (top row, 2nd button from right) meaning that it “should” run the complete file by pushing the “cycle start” button only once.

My problem is that when I upload the file into the Heidenhain controller, and then go to the “Program run-full sequence” mode, I still have to manually push the “cycle start” button each time so it can go to the next line of code. According to the manual, it is supposed to run though all the lines automatically. It seems like it is running in the “run 1-block” mode all the time.

I have also noticed that when the file is uploaded into the controller, the program lines start at #0 (Begin PGM 100), and then there is a big gap and the program begins much later (around line 70-or so depending on the program). I tried to delete the extra gap, but the controller will not allow me to do so.

If I were to go to “Program-full sequence” and upload directly from the computer, the machine will run perfectly, but the down side is that the file is not stored into the Heidenhain controller. It must be uploaded every time. In this mode, I also notice that the code starts at line 100 (instead of 0) and it goes straight through to the end (without any gaps). The machine works perfectly this way.

I was thinking maybe I am using the wrong post-processor? Or there might be some kind of setting on the Heidenhain that I don’t know about?

I do also have a picture of the Heidenhain controller buttons available.

I really appreciate any help you can provide.

Thank you in advance!
Larry
__________________
Just learning how to program CNC machines...it's pretty fun....until you crash :-(
Reply With Quote

 

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