mpg hand wheels <Resolved>
Moderator: cnckeith
-
- 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
Spoke too soon, now the wireless hand wheel is not working.
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- 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
Please post a new report. We should be able to figure out what is going on from the parameters and any PLC modifications.
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- 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
Report from this morning attached. Thanks.
- Attachments
-
- report_0008DC111213-0420231461_2025-03-17_09-22-30.zip
- (7.69 MiB) Downloaded 4 times
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- 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
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
with the following.
This should disable the two wired MPGs while the WMPG is enabled and allow their use when the WMPG is disabled.
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)
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)
1 user liked this post
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- 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
Perfect! Works great, thanks again for your support!
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- 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
Happy to help! Let us know if you have any further questions!
(Note: Liking will "up vote" a post in the search results helping others find good information faster)