Shuttle jog controller question - Page 5


Page 5 of 5 FirstFirst ... 2345
Results 81 to 100 of 100

Thread: Shuttle jog controller question

  1. #81
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    I havent really looked into it, but I think the issue will be that the shuttle doesnt receive any info from the controller. So if you used the PP ui to change the axis, the shuttle wont know about it. That's what I "think" anyways.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  2. #82
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Looking at the shuttle driver, all communication is from the shuttle to PP. Nothing goes the other way. Adding a LED would just show that the button on the shuttle had been pressed irrespective of what was done with the PP touch screen. A beep upon a button press might be useful audible feedback and wouldn't imply that one actually knew the selected axis.



  3. #83
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Thats what I was afraid of. However, for a panel mount, I could control the LEDs from PP I suppose.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  4. #84
    Gold Member LeeWay's Avatar
    Join Date
    Jun 2004
    Location
    United States
    Posts
    6618
    Downloads
    2
    Uploads
    0

    Default Re: Shuttle jog controller question

    Oh! Lighted buttons or led's to indicate active buttons would be very cool.

    Lee


  5. #85
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Playing around with LED indication and audible notification for axis selection. This is on PP 2.0 in sim mode. Using a shuttle to change axis. The leds are different colors just so I could make sure the correct ones were being triggered. The beeps are 1 for X, 2 for Y, 3 for Z. They all have a slightly different tone. A isnt programmed yet.



    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  6. #86
    Gold Member LeeWay's Avatar
    Join Date
    Jun 2004
    Location
    United States
    Posts
    6618
    Downloads
    2
    Uploads
    0

    Default Re: Shuttle jog controller question

    I like that.

    Lee


  7. #87
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Interesting! How do you control the LEDs? Are they somehow connected to the shuttle or...?



  8. #88
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Quote Originally Posted by kstrauss View Post
    Interesting! How do you control the LEDs? Are they somehow connected to the shuttle or...?
    Unfortunately, without the shuttle source code, I doubt you can add it to the shuttle itself. I have a teensy board controlling buttons on my control panel so I'm using that. There's a function within PP that checks to make sure the axis leds in the gui match what axis is actually active. It keeps the gui LEDs in sync and its how the LEDs in the gui are changed when you select them on the shuttle. The shuttle itself doesnt set the gui LEDs. Once I figured that out, I wrote a python script that talks to the teensy to control the LEDs and sound the beeps. Whenever the PP function syncs the gui LEDs, it also calls my script.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  9. #89
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    That makes sense but does require a second USB interface to control the LEDs and beeps if I understand correctly. Even with the shuttle source it could not be guaranteed that the LEDs match reality since you can select the axis from both the shuttle and the PP screen.

    It seems to me what is really required is a semi-automated way to apply user generated modifications to the standard PP code. Support of PP mods becomes incredibly onerous without such a tool.



  10. #90
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Quote Originally Posted by kstrauss View Post
    That makes sense but does require a second USB interface to control the LEDs and beeps if I understand correctly.
    No, not for the beeps. I just put the beep code in the same script that talks to the teensy just to keep it together. The beep can go anywhere.


    Quote Originally Posted by kstrauss View Post
    Even with the shuttle source it could not be guaranteed that the LEDs match reality since you can select the axis from both the shuttle and the PP screen.
    That's not true. You could do it exactly how I'm doing it. But instead of talking to the teensy like I am, you'd send the led request to the shuttle. The button doesnt turn on the LED, the led sync function thats independent of any button, gui or physical, does it. While we are on the subject, how do you select the axis from PP? I mentioned it the other day, but then realized that I dont think you can.

    Quote Originally Posted by kstrauss View Post
    It seems to me what is really required is a semi-automated way to apply user generated modifications to the standard PP code. Support of PP mods becomes incredibly onerous without such a tool.
    Agreed.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  11. #91
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    It appears that I was wrong. I was almost certain that zeroing an axis selected that axis. A very quick test shows that none of zero axis, home axis or jog axis using keyboard shortcuts gives any indication on the PP screen of which axis is being affected. I'm surprised!

    I should have said: "If you had access to the shuttle source code you could possibly add the LEDs to the shuttle assuming that there are spare output pins on the shuttle's micro and you are willing to change the shuttle driver in PP." However, in light of the lack of any way to select the axis from the GUI you could create a shuttle clone using a teensy that controls the LEDs under control of the teensy alone. That would mean that no PP code changes would be required.



  12. #92
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    True. I did consider it awhile back and I have found the exact ALPS jog/shuttle switch. They are about $15. I just didnt want to add another coding project to my list.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  13. #93
    Gold Member LeeWay's Avatar
    Join Date
    Jun 2004
    Location
    United States
    Posts
    6618
    Downloads
    2
    Uploads
    0

    Default Re: Shuttle jog controller question

    You do eventually get an indication on the screen. A little late to the game of course once the DRO starts changing. Only good if that is the one you wanted to move.

    Lee


  14. #94
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Quote Originally Posted by sharmstr View Post
    True. I did consider it awhile back and I have found the exact ALPS jog/shuttle switch. They are about $15. I just didnt want to add another coding project to my list.
    If it isn't too much trouble I'd appreciate the Alps part number and source for small quantities.



  15. #95
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    China. I couldnt find them in the states nor any mention of them on their site. I cant find the exact listing I saw before. You need to be careful because there are some similar ones made by ALPS but the pins are facing the other way (toward the knob). Anyhow, here's one for 10 of them which knocks the price down to $6 https://www.aliexpress.com/item/VK-J...799158024.html

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  16. #96
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Thanks! Mouser shows that part number on their website but it is flagged as "obsolete" and not available but there are lots of sources in China.



  17. #97
    Member kstrauss's Avatar
    Join Date
    Apr 2013
    Location
    Canada
    Posts
    1788
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    To update my previous posting I have attached a photo of v1.1 of my enclosed, chip resistant, shuttle using the circuit board from a repaired Tormach Jog Shuttle.
    Hopefully no more aluminum chips wedging in bad places!

    Attached Thumbnails Attached Thumbnails Shuttle jog controller question-_dsc2984_small-jpg  


  18. #98
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Nice! I see the step button made it back

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


  19. #99
    Member
    Join Date
    Oct 2010
    Location
    USA
    Posts
    670
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Quote Originally Posted by sharmstr View Post
    Nice! I see the step button made it back
    Hey Sharmstr, on Instagram I noticed on some of your PathPilot screenshots that you must be using the Ninja knobs (due to the revision number). Are you still using that or did you make a new controller like I saw some of your rendition pictures of? Also, where are you located?

    Awall - The Body Armor Dude
    CoolCNCStuff_ on Instagram - CoolCNCStuff.com


  20. #100
    Member
    Join Date
    Jul 2016
    Location
    United States
    Posts
    140
    Downloads
    0
    Uploads
    0

    Default Re: Shuttle jog controller question

    Currently still using NinjaKnobs and will continue to, just customized a bit with my new controller. I'm in Los Angeles.

    Tormach PCNC 1100 Series 3 w/ Rapid Turn, Fusion 360


Page 5 of 5 FirstFirst ... 2345

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

Shuttle jog controller question

Shuttle jog controller question