CNC GCode for BIESSE ROVER J 1530

CNC GCode for BIESSE ROVER J 1530

Anonymous
Not applicable
4,923 Views
11 Replies
Message 1 of 12

CNC GCode for BIESSE ROVER J 1530

Anonymous
Not applicable

Hello Everyone:

 

I was suggested here to post a program on this section of the forum to start a discussion about the best post-processor to utilize with a BIESSE ROVER J 1530; So I'm attaching a program file and I've used the "rs274.cps - RS - 274 D" post proccessor, that took me 99% there with the exception of two things that I've found so far:

 

1 - I have to edit every GCODE to remove instruction G94

ORIGINAL  =  N10 G90 G94

EDITED  = N10 G90 

Command G94 is not supported by ROVER

 

2 - When Patterns are created within the program there is an extra Tool change for the wrong tool. 

ORIGINALS = N45 T3 (line 16)  & N440 T2 (line 101)

EDITED  =  (N45 T3) & (N440 T2) (added parenthesis to turn instructions into comments)

 

Any help with this would be greatly appreciated.

 

Thanks in advance

 

Paul Kühne

0 Likes
Accepted solutions (1)
4,924 Views
11 Replies
Replies (11)
Message 2 of 12

skidsolo
Alumni
Alumni
Accepted solution

you can remove the G94 by opening the post in a text editor (preferably notepad ++). Find this code in the RS274.CPS file:

 

 // absolute coordinates and feed per min
  writeBlock(gAbsIncModal.format(90), gFeedModeModal.format(94));
  writeBlock(gPlaneModal.format(17));

Now edit the code to look like this :

  // absolute coordinates and feed per min
  writeBlock(gAbsIncModal.format(90));
  writeBlock(gPlaneModal.format(17));

You can remove the second tool call that apperas by editing this code:

// user-defined properties
properties = {
  writeMachine: true, // write machine
  writeTools: true, // writes the tools
  preloadTool: true, // preloads next tool on tool change if any
  showSequenceNumbers: true, // show sequence numbers
  sequenceNumberStart: 10, // first sequence number
  sequenceNumberIncrement: 5, // increment for sequence numbers
  optionalStop: true, // optional stop
  separateWordsWithSpace: true // specifies that the words should be separated with a white space
};

Change to this :

// user-defined properties
properties = {
  writeMachine: true, // write machine
  writeTools: true, // writes the tools
  preloadTool: false, // preloads next tool on tool change if any
  showSequenceNumbers: true, // show sequence numbers
  sequenceNumberStart: 10, // first sequence number
  sequenceNumberIncrement: 5, // increment for sequence numbers
  optionalStop: true, // optional stop
  separateWordsWithSpace: true // specifies that the words should be separated with a white space
};

I have also attached the file with the changes.

 

Andrew W. Software engineer (CAM Post Processors)
0 Likes
Message 3 of 12

Anonymous
Not applicable

Can you help me with where to place this post processor. I too have a Biesse Rover 30 I will soon to start programming for. Too, we bought this machine used and I have no manuals for it, if anyone could point me in the right direction it would be greatly appreciated.

 

Mike Wilkerson

0 Likes
Message 4 of 12

skidsolo
Alumni
Alumni
Can you tell me if you are on a Windows PC or a Mac ?
Andrew W. Software engineer (CAM Post Processors)
0 Likes
Message 5 of 12

Anonymous
Not applicable
It's a windows pc windows xp to be exact



Thanks

Mike Wilkerson
0 Likes
Message 6 of 12

Anonymous
Not applicable

Thank you very much! Will be trying today and posting the results!

0 Likes
Message 7 of 12

Anonymous
Not applicable
Works Flawlessly !!! Thanks! I renamed the CPS file and copied to

/Users/paulkuhne/Library/Application Support/Autodesk/webdeploy/production/223f6530b321f48634024235f2f8faffc004221d/Libraries/Applications/CAM360/Data/Posts

Is that the right pace?
0 Likes
Message 8 of 12

skidsolo
Alumni
Alumni

I believe that post will be overwritten once the software is updated (which is automatic). Its best to open your A360 account from within Fusion, the move the post into your A360 camposts foler drive. These will appear as your personal posts.

 

Screen Shot 2016-06-09 at 11.37.24 AM.png

Screen Shot 2016-06-09 at 11.38.58 AM.png

Andrew W. Software engineer (CAM Post Processors)
0 Likes
Message 9 of 12

Anonymous
Not applicable

I finally got the post that was offered here in the correct file and it is working. However, I have the rover 30 S2, will this processor work for this router too???

 

Thanks

Mike

0 Likes
Message 10 of 12

skidsolo
Alumni
Alumni
Sorry I dont know that there are so many different types, the only thing I would say is try a small test program and see if it runs
Andrew W. Software engineer (CAM Post Processors)
0 Likes
Message 11 of 12

Anonymous
Not applicable

too, can G-code be used on the Biesse routers? I was under the understanding that biesse machines where parametric programming only. This is my first encounter with Biesse anything, so, I really dont know.

 

Thanks

Mike

0 Likes
Message 12 of 12

skidsolo
Alumni
Alumni

Biesse unfortunately seem to use many code formats, I do know that the Biesse Rover uses G&M code

Andrew W. Software engineer (CAM Post Processors)
0 Likes