Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot get SCROLL_WHEEL function to work #141

Open
brabs27 opened this issue Dec 21, 2024 · 2 comments
Open

Cannot get SCROLL_WHEEL function to work #141

brabs27 opened this issue Dec 21, 2024 · 2 comments

Comments

@brabs27
Copy link

brabs27 commented Dec 21, 2024

Hello, I am trying to get scroll wheel to work on my right stick. (Using rotation)
I’ve tried L,RIGHT_STICK _MODE = SCROLL_WHEEL.
This doesn’t work, what am I doing wrong?

@Jazztache
Copy link

Jazztache commented Dec 22, 2024

Just verified this works. SCROLL_WHEEL lets you bind stuff to LLEFT and LRIGHT (or RLEFT and RRIGHT)
Try this:

L,RIGHT_STICK_MODE = SCROLL_WHEEL
RLEFT = SCROLLUP
RRIGHT = SCROLLDOWN

A cool effect of this, is that you can use sticks as a scrollwheel to step through YouTube videos frame-by-frame like this:

LEFT_STICK_MODE = SCROLL_WHEEL
LLEFT = ,
LRIGHT = .

or

RIGHT_STICK_MODE = SCROLL_WHEEL
RLEFT = ,
RRIGHT = .

Side note: Not sure if it works with the motion stick without conflicting with gyro, might try it later.
Also, thanks for pointing out that the stick modes work with modeshift, didn't think that would be the case.

I found it in 3. Stick Configuration of the manual:

SCROLL_WHEEL: enable left and right bindings by rotating the stick counter-clockwise or clockwise.

Every 30 degrees you rotate the stick clockwise, the RRIGHT binding fires. Every 30 degrees you rotate the stick counter-clockwise, the RLEFT binding fires. I figured out it was 30 degrees today due to the leftover is now *blah* messages that JSM spams.

Hope this helps!

@brabs27
Copy link
Author

brabs27 commented Dec 23, 2024

Thanks Jazztache!
That worked! It must have been the RLEFT and RRIGHT Bits that were needed.
I’m glad I was able to show you something with the modifier too
Thanks again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants