Acorn retroSharp NC OD Grinder

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

Post Reply
acorn_automation
Posts: 11
Joined: Fri Feb 15, 2019 2:15 am
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: ok375 - C120629; ok375 - c120683
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Acorn retroSharp NC OD Grinder

Post by acorn_automation »

Retro a Sharp NC OD grinder. Used Yaskawa Sigma 5 setup for pulse and direction.
Wrote custom macro programs for course & fine infeed with reciprocation; and plunge/dwell grinding.
Machine works to less than +/- 0.0001 finish on parts. First production run of 33 pieces all dead on the money, perfect.

When running the DRO shows 4 places after decimal; since working to 4 places, truncated or rounded-off position is confusing. Want to change DRO to show 5 places after decimal (0.00001). Parameter #143 controls DRO digits, currently set to default of 11.0; not sure how to set proper bit when parameter is shown in decimal. How to do

Thanks.

BS


centroid467
Posts: 862
Joined: Thu Apr 14, 2022 2:46 pm
Acorn CNC Controller: No
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: No
CNC11: No
CPU10 or CPU7: No

Re: Acorn retroSharp NC OD Grinder

Post by centroid467 »

Please confirm you are using the correct manual for your version of CNC12 as DRO precision is controlled by parameter 263 in newer versions. The best way to set this would be in the Acorn Wizard under Preferences > CNC Control. Parameter 263 should be set to 5.0 to display 5 decimal places on the DRO.

In general, the parameters are all displayed as floating point values. For bit-mapped parameters, you need to ignore the decimal point and add the correct values to set the desired bits. For instance, if you are setting bits 1, 2, and 3 then you would add:

Code: Select all

2^1 + 2^2 + 2^3 = 2 + 4 + 8 = 14

and set this sum in the parameter.


Post Reply