Hyratel
Hyratel
FFB wheels and sticks have no- or a weak centering spring, instead it's a closed-loop feedback servo logical-circuit that brings the stick to center, so the FFB signal has to...
a 'naive' implementation of Slider and Dial axes works fine ``` #define JOYSTICK_INCLUDE_RZ_AXIS B00100000 #define JOYSTICK_INCLUDE_S_AXIS B01000000 #define JOYSTICK_INCLUDE_D_AXIS B10000000 ``` ``` bool includeRzAxis, bool includeSlider, bool includeDial, ``` ```...
you can add several defines to a new submenu https://gist.github.com/Hyratel/80017369fedd1bbc9eef4c8e7a896225
@MHeironimus https://github.com/Hyratel/LeonardoPIDboards have a looky here. I went through and spun this up. you ***have*** to use different PIDs because windows Caches the name in the registry. (the 0x5000 range...
@vospascal no, it loads the names into the USB stack on the arduino, so it will announce itself with the name you set. it will work on any machine that...
still no examples for Joystick via USB HID Middleware, and MHeironymous's Joystick library relies on HID.h (arduino core) -> PluggableUSB.h (arduino core) -> USBAPI.h (arduino core)
@Levi--G I'd definitely be interested in what you have thusfar and yes - MHJoy is about all I'm after for this. it's about the only thing blocking the 32F401 from...
@Levi--G I got it working on F401 with your LibHack, so it's rough-and-ready for that. I look forward to it being given bidirectional, but even this much is a watershed...
can I put a `boards.local.txt` directly in the sketch folder,? and if not, Why? This needs a good reason for it to not be present or intuitive. it's right there...
if we take the Arduino IDE's design at face value ie, the basic user should never have to step outside the arduino ecosystem environment/user-space folders, having to put `*.local.txt` directly...