An easy chamfer

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

cnckeith
Posts: 7322
Joined: Wed Mar 03, 2010 4:23 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: Yes
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: Yes
CNC11: Yes
CPU10 or CPU7: Yes
Contact:

Re: An easy chamfer

Post by cnckeith »

Lathe one shot button graphics attached.


a screen shot of a proposed "stock" centroid Lathe VCP for v5.0. comments welcome. this would be the default VCP for Lathe CNC12 v5.0 which you can of course modify to your liking.
latheone shot.png

from the Lathe v4.20 operator manual. one shots are setup in the CNC12 parameter menu.
lathe one shto manual2.png
Attachments
one_shot_chamfer.svg
(2.76 KiB) Downloaded 14 times
one_shot_turn.svg
(1.65 KiB) Downloaded 10 times
one_shot_radius.svg
(3.5 KiB) Downloaded 10 times
one_shot_lathe_drill.svg
(2.27 KiB) Downloaded 8 times
one_shot_lathe_facing.svg
(2.63 KiB) Downloaded 9 times
Need support? READ THIS POST first. http://centroidcncforum.com/viewtopic.php?f=60&t=1043
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html
suntravel
Posts: 1967
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Allin1DC 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: An easy chamfer

Post by suntravel »

Very cool :)

Here a video how I am using one shots on the lathe:



I also made a button on the VCP "Set Tool and rapid to X" that's asking for the tool# and X Value, then sets the tool with offset and rapids to the X position. For a lazy old man like me, it is faster to get to the start position for one shots or for setting Z 0, because I now have only to drive Z with the MPG :D

Uwe
cnckeith
Posts: 7322
Joined: Wed Mar 03, 2010 4:23 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: Yes
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: Yes
CNC11: Yes
CPU10 or CPU7: Yes
Contact:

Re: An easy chamfer

Post by cnckeith »

great, post it and i'll check it out. maybe add it as standard!
Need support? READ THIS POST first. http://centroidcncforum.com/viewtopic.php?f=60&t=1043
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html
suntravel
Posts: 1967
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Allin1DC 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: An easy chamfer

Post by suntravel »

Here it is

Uwe
Attachments
mfunc58.mac
(719 Bytes) Downloaded 11 times
ST02.jpg
ST01.jpg
aux9.zip
(5.06 KiB) Downloaded 5 times
dmbgo
Posts: 547
Joined: Sat Aug 15, 2020 9:21 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 0035FF8A7F34-0730203594
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Bendigo Vic Australia
Contact:

Re: An easy chamfer

Post by dmbgo »

Ok, the buttons that you have on your Vcp look nice and appear quite useful. It would certainly be an "easy" chamfer. I tried to replicate what you have by setting parameter 188 to the value of 56, which I think should make the first auxiliary key be a chamfer. I downloaded Keith's SVG files for the button images and put them in "C:\cnct\resources\vcp\images" I then realised that I had no auxiliary keys visible.
I'm sure it's in the manual somewhere, but how do you display auxiliary keys on the Vcp and how do you name them and assign an image? (I did look btw).
suntravel
Posts: 1967
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Allin1DC 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: An easy chamfer

Post by suntravel »

dmbgo
Posts: 547
Joined: Sat Aug 15, 2020 9:21 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 0035FF8A7F34-0730203594
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Bendigo Vic Australia
Contact:

Re: An easy chamfer

Post by dmbgo »

Ah, I'll look now. I was looking in the Lathe 4.2 manual. No wonder I couldn't find it!
suntravel
Posts: 1967
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Allin1DC 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: An easy chamfer

Post by suntravel »

For me, the fastest way for an easy chamfer is a MPGmacro....

Code: Select all

;------------------------------------------------------------------------------
; Filename: MPGmacro1.mac
; Description: Turn a 45° chamfer
; Notes:
; Requires: Machine home must be set prior to use.
; Please see TB300 for tips on writing custom macros.
;------------------------------------------------------------------------------

IF #50010                        ;Prevent lookahead from parsing past here
IF #4201 || #4202 THEN GOTO 1000 ;Skip macro if graphing or searching



N100                             ;Insert your code between N100 and N1000 
G97
S1000 M3
G4 P0.5
G99 
G1 U4 W-2 F0.1 ; incremental in +X
W-0.05         ; finish amount
U-4 W2 F0.5    ; incremental back to start
M5
N1000 ; end 
Uwe
dmbgo
Posts: 547
Joined: Sat Aug 15, 2020 9:21 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 0035FF8A7F34-0730203594
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Bendigo Vic Australia
Contact:

Re: An easy chamfer

Post by dmbgo »

Thanks Uwe, I have copied the macro, and will try it tomorrow.
Post Reply