I got a XENCELABS Quick Keys to use a pendant and it was super easy to program most everything, something I can’t figure out is how to map the feed or jog to the dial has anyone done something like this short of buying the premade remotes?
](https://www.amazon.com/dp/B08VNCLDTK?psc=1&ref=ppx_yo2ov_dt_b_product_details)
Yes; make signal handlers in your screen script, something like this below, copied from:
And then edit the keyboard shortcuts to call the signals.
[mc.ISIG_INPUT0] = function (state)
if (state == 1) then
SetJogIncToValue(.0001)
end
end,
[mc.ISIG_INPUT1] = function (state)
if (state == 1) then
SetJogIncToValue(.001)
end
end,
[mc.ISIG_INPUT2] = function (state)
if (state == 1) then
SetJogIncToValue(.01)
end
end,
[mc.ISIG_INPUT3] = function (state)
if (state == 1) then
SetJogIncToValue(.1)
end
end,
wow into the deep end with that, ;looks like I got some reading on how to edit this stuff