absolute knob to keystroke

esepablo

2015-06-16 22:26:17

im trying to do something simple, but am failing

basically i want my knob to hold down a key as i turn in to the right, and hold down another key as i turn it to the left.
turning right would hold down "]", while turning left would hold down "[".

i followed a few guides on here but everything i do comes out with the same result. I always get "[][][][][][][][][][][][][][]"

im new to this

][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][
(this is me turning my knob in one direction)

DvlsAdvct

2015-06-16 22:30:01

Hi esepablo

Try translators that resemble this:

Code: Select all

Translator 0: turn left
Options: stop=false
Incoming: MIDI B0 0E pp
Rules:
  gd=pp-ga
  ga=pp
  if gd>=0 then exit rules, skip Outgoing Action
Outgoing: Keystroke: ]

Translator 1: turn right
Options: stop=false
Incoming: MIDI B0 0E pp
Rules:
  if gd<=0 then exit rules, skip Outgoing Action
Outgoing: Keystroke: [

esepablo

2015-06-16 22:58:15

:D:D
flawless!
thanks alot

mingle51

2015-08-31 22:52:20

Would this work to hold down a key on the keyboard and press an different key.. if I press z as my incoming action and then hold down the 0 key for 2 seconds then while holding the 0 key down press 2 then release all?