Adding a 20% feeds button to VCP

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

Black Forest
Posts: 421
Joined: Thu Nov 23, 2017 1:39 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
Location: Germany

Adding a 20% feeds button to VCP

Post by Black Forest »

How big of a deal would it be to add a button on the VCP that would reduce the feeds to 20%? The minus button is too slow! I would like to be able to click or touch the icon on the VCP and get to 20% feeds nearly instantly and then when I know all is OK click or touch the 100% button that is already there.


suntravel
Community Expert
Posts: 3627
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: Adding a 20% feeds button to VCP

Post by suntravel »

No big deal, but do you have the WMPG?
For this I have already code for Macro3 Feed 20% Macro4 100%

Uwe


Black Forest
Posts: 421
Joined: Thu Nov 23, 2017 1:39 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
Location: Germany

Re: Adding a 20% feeds button to VCP

Post by Black Forest »

No I don't have the WMPG.


suntravel
Community Expert
Posts: 3627
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: Adding a 20% feeds button to VCP

Post by suntravel »

But WMPGs are like dogs, you can live without them, but it makes no sense :mrgreen:

Uwe


Spartan117
Posts: 161
Joined: Mon Apr 11, 2022 3:37 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: Yes
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
Location: Germany, Stuttgart

Re: Adding a 20% feeds button to VCP

Post by Spartan117 »

suntravel wrote: Sun Jul 10, 2022 6:29 am But WMPGs are like dogs, you can live without them, but it makes no sense :mrgreen:

Uwe
And this is why I ordered one yesterday :D

But that macro can be used via the Aux-Buttons on the VCP, too. You don't need the WMPG to use that Macro I think.
AND there are videos on YouTube about using the Aux-Buttons for macros.
German-speaking, so please be patient with my english-skills :)


suntravel
Community Expert
Posts: 3627
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: Adding a 20% feeds button to VCP

Post by suntravel »

I use only Macro3 buttom on the WMPG, but it runs not a macro, it triggers a PLC function, quite easy to do this.

To make a 20% Feed button on the VCP it needs also some PLC editing I think

Uwe


CNCMaryland
Posts: 370
Joined: Thu Nov 15, 2018 10:07 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: F045DA7CBF8b-103011290
DC3IOB: No
CNC11: No
CPU10 or CPU7: No

Re: Adding a 20% feeds button to VCP

Post by CNCMaryland »

I'm interested in this WMPG macro to reduce feed to a certain %. Anyone care to share?


suntravel
Community Expert
Posts: 3627
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: Adding a 20% feeds button to VCP

Post by suntravel »

CNCMaryland wrote: Tue Jul 12, 2022 9:58 am I'm interested in this WMPG macro to reduce feed to a certain %. Anyone care to share?
This is not a macro, but some easy edit in the PLC:

Code: Select all

; MpgMacro1-4_M not to run an macro UWE
;MPG Macro Keys
;IF (MpgMacro1_M && !PlasmaWMPG_M) || (MpgSpinAutoMan_M && PlasmaWMPG_M) THEN (MpgMacro1PD)
;IF (MpgMacro2_M && !PlasmaWMPG_M) || (MpgMacro1_M && PlasmaWMPG_M) THEN (MpgMacro2PD)
;IF (MpgMacro3_M && !PlasmaWMPG_M) THEN (MpgMacro3PD)
;IF (MpgMacro4_M && !PlasmaWMPG_M) THEN (MpgMacro4PD)
and add this in the Feed Override section:

Code: Select all

; MPGMacro3_M Feed Override 20% MPGMacro4_M Feed Override 100% -UWE

IF MPGMacro3_M THEN KBOverride_W = 20
IF MPGMacro4_M THEN KBOverride_W = 100
Macro3 on the WMPG will set Feedrate to 20% and Macro4 to 100%

Works anytime, in manual mode or when you run gcode.

Uwe


Black Forest
Posts: 421
Joined: Thu Nov 23, 2017 1:39 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
Location: Germany

Re: Adding a 20% feeds button to VCP

Post by Black Forest »

:lol: Suntravel you have hijacked my thread! I didn't ask about the WMPG I asked about the VCP. You keep going on about the WMPG. Very impolite of you. Payback for hammering me about the thread I hijacked! :lol: :D ;)


suntravel
Community Expert
Posts: 3627
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: Adding a 20% feeds button to VCP

Post by suntravel »

Black Forest wrote: Tue Jul 12, 2022 12:49 pm :lol: Suntravel you have hijacked my thread! I didn't ask about the WMPG I asked about the VCP. You keep going on about the WMPG. Very impolite of you. Payback for hammering me about the thread I hijacked! :lol: :D ;)
Just a proof that Ostpreußen wins over Texas in the rudeness competition :mrgreen:

Uwe


Post Reply