I will give another thumbs-down to any suggestion that Centroid should change to an annual subscription model.
Just because other companies have decided to treat their customers like sh*t, doesn't mean we should do so as well.
Buy it once, use it as long as you like. Spend a few $$ if/when you ...
Search found 4534 matches
- Tue Jul 01, 2025 5:30 pm
- Forum: Centroid Acorn CNC Controller
- Topic: Centroid CNC Software Licensing Upgrade Announcement
- Replies: 64
- Views: 1709
Re: Centroid CNC Software Licensing Upgrade Announcement
This post has been liked 3 time(s).
- Wed Jul 02, 2025 3:27 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: SWI Trak 1745P - Allin1DC Retrofit
- Replies: 33
- Views: 362
Re: SWI Trak 1745P - Allin1DC Retrofit
I have all the connections made for the VFD, but am unsure of whether or not I am able to use "ACM" on our Automation Direct GS30 as both the ground reference for Input and output. (I can't seem to find a dedicated Analog Output Common, and assume that I am just supposed to know something ...
This post has been liked 2 time(s).
- Tue Jul 01, 2025 1:49 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Oak-Yaskawa cable differences
- Replies: 4
- Views: 53
Re: Oak-Yaskawa cable differences
Here is how I wired SGDA drives for velocity-mode control.
This post has been liked 2 time(s).
- Fri Jun 27, 2025 2:29 pm
- Forum: Centroid Acorn CNC Controller
- Topic: Acorn suddenly stopped homing, damage.
- Replies: 10
- Views: 168
Re: Acorn suddenly stopped homing
"457 ... unable to find home" is often because the control thinks that a touch probe is triggered.
You might want to review your probe, tool setter, and touch plate configuration, and the state of the associated inputs.
You might want to review your probe, tool setter, and touch plate configuration, and the state of the associated inputs.
This post has been liked 1 time(s).
- Wed Jul 02, 2025 9:07 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: spindle won't start when RUN a program
- Replies: 10
- Views: 131
Re: spindle won't start when RUN a program
Your screen pictures above clearly show that the M3 macro and PLC program are doing everything they can and should do, to make the spindle start and run. OUT7 "SpindleEnableOut_O" is on (green), and W7 "SixteenBitSpeed_W" is 16383, which is essentially 25% of maximum speed.
Either there is ...
Either there is ...
This post has been liked 0 time(s).
- Tue Jul 01, 2025 9:29 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: spindle won't start when RUN a program
- Replies: 10
- Views: 131
Re: spindle won't start when RUN a program
For troubleshooting, change Parameter 78 from 1 to 0, so that the spindle RPM shown in the status window is the commanded RPM from the PLC, rather than the measured RPM from the encoder.
When you do that, and run "M3 S1600", does the commanded RPM in the status window still say 0?
If it still says ...
When you do that, and run "M3 S1600", does the commanded RPM in the status window still say 0?
If it still says ...
This post has been liked 0 time(s).
- Tue Jul 01, 2025 2:25 pm
- Forum: Centroid Acorn CNC Controller
- Topic: AI suggestions for writing G-code
- Replies: 8
- Views: 131
Re: AI suggestions for writing G-code
Let us know how that custom M101 macro and Q parameter work out for you....
This post has been liked 0 time(s).
- Tue Jul 01, 2025 2:20 pm
- Forum: Centroid Acorn CNC Controller
- Topic: Enormous C-Axis "unwind" on program start <Resolved>
- Replies: 5
- Views: 81
Re: Enormous C-Axis "unwind" on program start
What he needs here is not "M26/C", but instead "G92 C0". Optionally both, in that order.
With the WCS offset already set to 65520 degrees, then immediately after power-up, the axis is at machine zero / machine home, but it is 65520 degrees away from part zero.
M151 resets machine position, not ...
With the WCS offset already set to 65520 degrees, then immediately after power-up, the axis is at machine zero / machine home, but it is 65520 degrees away from part zero.
M151 resets machine position, not ...
This post has been liked 0 time(s).
- Tue Jul 01, 2025 1:37 pm
- Forum: Centroid Oak, Allin1DC, MPU11 and Legacy products
- Topic: Oak-Yaskawa cable differences
- Replies: 4
- Views: 53
Re: Oak-Yaskawa cable differences
If you move forward with the SGDA drives, you will have to accept some compromises related to error detection and emergency stop inhibits.
See https://centroidcncforum.com/viewtopic.php?p=80825
For control cables, I would start with the flying-lead cables (or cut the 50-pin connectors off your ...
See https://centroidcncforum.com/viewtopic.php?p=80825
For control cables, I would start with the flying-lead cables (or cut the 50-pin connectors off your ...
This post has been liked 0 time(s).
- Tue Jul 01, 2025 1:15 pm
- Forum: Centroid Hickory EtherCAT CNC Controller
- Topic: PLC Programming Question - Not Using the Wizard - (Problem Solved)
- Replies: 5
- Views: 58
Re: PLC Programming Question - Not Using the Wizard - (Problem Solved)
A couple of style and convention comments:
; Check if Tool Setter Machine Ready (INP14) is active
; This sets ToolSetterReady_M if INP14 is active, otherwise, it will be RST by default below
IF TRUE THEN RST ToolSetterReady_M ; Default to OFF
IF INP14 THEN SET ToolSetterReady_M
Supposing that you ...
; Check if Tool Setter Machine Ready (INP14) is active
; This sets ToolSetterReady_M if INP14 is active, otherwise, it will be RST by default below
IF TRUE THEN RST ToolSetterReady_M ; Default to OFF
IF INP14 THEN SET ToolSetterReady_M
Supposing that you ...
This post has been liked 0 time(s).