Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

suntravel
Community Expert
Posts: 3758
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

Post by suntravel »

This checkbox will not be influenced by the PP IMHO.

I have the V2 PP and the latest payed fusion version.

No problems.

Uwe


Bigtimeb
Posts: 7
Joined: Fri Sep 23, 2022 6:28 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

Post by Bigtimeb »

Well no dice. I have a custom machine built and the community PP. No check box for connecting moves. I loaded a generic machine and PP as well. I still don't have the dialog box. I am running a full version not a hobby version of Fusion.
image.png


suntravel
Community Expert
Posts: 3758
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

Post by suntravel »

I have included the material size to display in the graph and RTG for CNC 5.40

Code: Select all

  //stock size output UWE
{ // stock - workpiece
writeComment ("Material Size Min/Max for CNC12 V5.40+ Graphing and Run Time Graphics");
var workpiece = getWorkpiece();
var delta = Vector.diff(workpiece.upper, workpiece.lower);
if (delta.isNonZero()) {
writeln(":::: X- = " + xyzFormat.format(workpiece.lower.x) + (", X+ = ") + xyzFormat.format(workpiece.upper.x));
writeln(":::: Y- = " + xyzFormat.format(workpiece.lower.y) + (", Y+ = ") + xyzFormat.format(workpiece.upper.y));
writeln(":::: Z- = " + xyzFormat.format(workpiece.lower.z) + (", Z+ = ") + xyzFormat.format(workpiece.upper.z));
}
writeln (" ");
}
//end of stock size UWE
}
Output in the g code:

Code: Select all

%
(File:  1001.nc)
(T3 D=6.000 CR=0.000 - ZMIN=-20.000 - right hand tap)
N10 G90 G94 G17
N15 G21
(Material Size MinMax for CNC12 V5.40 Graphing and Run Time Graphics)
:::: X- = -50.000, X+ = 50.000
:::: Y- = -15.000, Y+ = 15.000
:::: Z- = -20.000, Z+ = 0.000
 
N20 G28 G91 Z0.000
N25 G90
 
Uwe
Attachments
centroidForumV3.zip
(20.3 KiB) Downloaded 1 time
MaterialSize.jpg


suntravel
Community Expert
Posts: 3758
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

Post by suntravel »

Bigtimeb wrote: Thu Jul 24, 2025 7:07 pm Well no dice. I have a custom machine built and the community PP. No check box for connecting moves. I loaded a generic machine and PP as well. I still don't have the dialog box. I am running a full version not a hobby version of Fusion.

image.png
Sorry for the late answer.

Did You select Simulate Connection Moves in the PP also?

Uwe
Attachments
CM.jpg


suntravel
Community Expert
Posts: 3758
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: Fusion 360 Mill Post Processor for CNC12 with additional Features (New Community Version 1.0)

Post by suntravel »

New version with the option to post the Material Size or not in a Selection...

Uwe
Attachments
Fusion2.jpg
MaterialSize2.jpg
centroidForumV3.zip
(20.3 KiB) Not downloaded yet


Post Reply