mpg hand wheels <Resolved>

All things related to Centroid Oak, Allin1DC, MPU11 and Legacy products

Moderator: cnckeith

jfavre
Posts: 49
Joined: Tue Oct 15, 2019 6:51 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by jfavre »

Spoke too soon, now the wireless hand wheel is not working.


centroid467
Posts: 760
Joined: Thu Apr 14, 2022 2:46 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: No
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by centroid467 »

Please post a new report. We should be able to figure out what is going on from the parameters and any PLC modifications.


jfavre
Posts: 49
Joined: Tue Oct 15, 2019 6:51 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by jfavre »

Report from this morning attached. Thanks.
Attachments
report_0008DC111213-0420231461_2025-03-17_09-22-30.zip
(7.69 MiB) Downloaded 4 times


centroid467
Posts: 760
Joined: Thu Apr 14, 2022 2:46 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: No
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by centroid467 »

Oak and ALLIN1DC stock PLCs are not set up to work with both WMPG and other handwheels by default. The Acorn, AcornSix, and Hickory Wizard PLCs are set up to allow the hardwired MPGs to work when the WMPG is disabled and vice versa.


Try replacing this block in your PLC program

Code: Select all

; Enable the Software to read the Wireless MPG or Hardwired MPGs with MPGLED
IF (MPGLED_O && HandWheel_M && !MPG_M) || UsbMpgOn_M THEN (SV_MPG_1_ENABLED)
IF MPGLED_O && SV_MPG_2_AXIS_SELECT > 0 THEN (SV_MPG_2_ENABLED)
IF MPGLED_O && SV_MPG_3_AXIS_SELECT > 0 THEN (SV_MPG_3_ENABLED)
with the following.

Code: Select all

; Enable the Software to read the Wireless MPG or Hardwired MPGs with MPGLED
IF (MPGLED_O && HandWheel_M && !MPG_M) || UsbMpgOn_M THEN (SV_MPG_1_ENABLED)
IF MPGLED_O && SV_MPG_2_AXIS_SELECT > 0 && !UsbMpgOn_M THEN (SV_MPG_2_ENABLED)
IF MPGLED_O && SV_MPG_3_AXIS_SELECT > 0 && !UsbMpgOn_M THEN (SV_MPG_3_ENABLED)
This should disable the two wired MPGs while the WMPG is enabled and allow their use when the WMPG is disabled.


jfavre
Posts: 49
Joined: Tue Oct 15, 2019 6:51 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by jfavre »

Perfect! Works great, thanks again for your support!


centroid467
Posts: 760
Joined: Thu Apr 14, 2022 2:46 pm
Acorn CNC Controller: No
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: No
CNC11: No
CPU10 or CPU7: No

Re: mpg hand wheels

Post by centroid467 »

Happy to help! Let us know if you have any further questions!


Post Reply