Remote key pad for jogging

Hello All,
Does anyone use a remote keypad for jogging the Shapeoko or other device they like ? Would like to get closer to the machine when jogging.

Thanks !

1 Like

Yes, this is a popular option.

The keyboard shortcuts are set up to facilitate it. Please see:

3 Likes

Check out Myers wood shop he has a video on the small key board from Amazon he uses very cheap price. I just order myself one havenā€™t got it yet.

1 Like

Iā€™ve been using that one forever now and itā€™s absolutely greatā€¦ strong recommendation

( https://smile.amazon.com/gp/product/B01ERN8FZM )

3 Likes

been using this cheap one from Wish.com for a while now works great
https://www.wish.com/search/bluetooth%20keyboard/product/5b98b6205f49747c7bfa3757?&source=search&position=2

1 Like

I use this one " https://www.amazon.com/Alcey-Wireless-Multi-Function-Keyboard-Receiver/dp/B0779MRQTL "

The arrows control X and Y, page up and down controls Z. Depending on your sender the jog speed can be controlled by the + and - or the numbers.

1 Like

i use this one
image

Just kidding i love this had it for years WIFI KB

image

Kind Regards
Jon

2 Likes

This one is only $9.29 on Cyber Monday

2 Likes

I using this one similar to Hoobyā€™s.
image

1 Like

Not exactly a keyboard but I bought a cheap handwheel and used an arduino leonardo which can emulate a keyboard. Works pretty well with carbide motion (it throws away keystrokes so it isnt perfect). I plan on putting a atmega32u4 pro .micro inside the case and then a usb connector on the end.

If anyoneā€™s interested Iā€™ll post the code. Itā€™s pretty simple.

8 Likes

Oh my, THIS is what I have been looking for. I have tried the pendant/bluetooth keypad thing, but somehow it feels weird to me to push buttons repeatedly to jog the machine. That box with the selection knobs and handwheel looks PERFECT to me. I would love if you shared info about the arduino part but mostly about what the design of that boxā€¦

1 Like

A similar thing, but commercial, would be the Contour Design ShuttleXpress ā€” unfortunately, it didnā€™t work with Macromedia Freehand, so I let my son have it.

It is supported in bCNC, and I believe CNCjs.

1 Like

I use this

1 Like

Here is the link to the one I purchased:

Any Atmega32u4 with enough I/O pins will work but the smaller micro form factors will fit inside the case and you can just rewire the switches with short wires soldered to the controller.

Iā€™ll upload the code to github and see if I can hack together a quick schematic showing how I wired it up.

For the x1 x10 x100 I just output 1, 2, 3 to select the jog resolution. And depending on the x, y, z setting I output arrows or , .

It only enables the keyboard when you hold the switch on the side. I think I turn on the led when you press the button. Didnā€™t do anything with the estop yetā€¦ suggestions? Feed hold? Actually wire to the estop functionality of the shapeoko controller?

5 Likes

Fantastic, I thought you had designed that sleak box, but even better that I can just buy it on banggood.
Obviously still interested in getting the arduino code & circuit diagram when you have time.
Wiring the estop button to feed hold would be my preference, I already have a separate estop that removes all power from everything (as an estop should :slight_smile: )

1 Like

Iā€™m all about saving time wherever I canā€¦ so if itā€™s already madeā€¦

Like the new bit setter. I was going to make one using one of the precision limit switches linked in another thread but now that thereā€™s a ready made one thatā€™s one fewer thing I need to make for myself

Iā€™d love to add some more buttons for things like zero axis but need carbide motion to provide a shortcut. I keep meaning to switch gcode sender but I keep defaulting to motion for the most part.

3 Likes

Just placed the banggood order for that pendant, and I have a bunch of arduino pro micro laying around already. Thank you for the inspiration.

The BitSetter is awesome, you wonā€™t be disappointed.

I donā€™t mean to draw you away from Carbide Motion, but once you get a taste of e.g. CNCjs instead, you will likely be hooked, I know I was.

2 Likes

code is here. itā€™s pretty rough. wasnā€™t really meant for public viewingā€¦

5 Likes

Thank you Norm, appreciated. Donā€™t worry I too have my fair share of ā€œnot meant for public viewingā€ code that I ended up putting up on github anyway :slight_smile:
Iā€™m excited to tinker with this in a couple of weeks when my banggood order arrives. I wonder if there will be an easy way to not only jog, but jog faster & coarser OR slower & finer depending on how fast one turns the handwheel (to not even have to turn that x1/x10/x100 selector). That would be neat.

1 Like

Good idea.

It should be relatively easy to estimate the current velocity of the handwheel and switch speeds when it passes some predefined speeds.

May need some sort of filter or other technique to smooth the incoming data. This is an interesting read but likely overkillā€¦

https://www.embeddedrelated.com/showarticle/158.php

https://www.embeddedrelated.com/showarticle/530.php

Rather than keystrokes it would be better to use the builtin jogging functionality in grbl. Does cncjs have builtin pendant support?