WhiteMagic

Results 204 comments of WhiteMagic

I don't have a device with three state switches but I'm assuming that to Windows they appear as three independent buttons right? This is probably a case where using a...

You can't use an integer index to access devices. The `JoystickProxy` requires the device's guid to be used, see https://github.com/WhiteMagic/JoystickGremlin/blob/r13/gremlin/input_devices.py#L392 Also how tristate buttons appear probably depends on the specific...

You should provide the full log, as the above actually is missing crucial information. For some reason the TWCS isn't complying with buffered reading mode and DILL has to fallback...

Looking at the log there seem to be quite a few things off but nothing in there suggests that the TWCS is completely dropped. If you only connect the TWCS...

By the looks of it, you're using it with a hat input. There might be something odd with the behaviour there, but I'll have to check. In the meantime, you...

I would assume that it is the "µ" character that causes the problem, which is what #301 is referring to. If you can rename the device, that should work around...

The requirements.txt file contains the packages that should be required, the other important bit to know is that the Python version I'm currently using is 3.9 64bit. However, all the...

From what I remember working on that script trying to remap the space mouse directly is super messy because it seems to accumulate changes, making it not usable directly. I'll...

Ok I've gone over the code and it actually runs fine. I didn't look at the error and your information closely enough at the time. The cause for the error...

Gremlin has a decorator similar to the one used for devices that is intended for functions that should run periodically while Gremlin is active. A simple example is: ``` @gremlin.input_devices.periodic(0.25)...