Edward Wright
Edward Wright
It would be useful to allow modifying the default startup parameters. Possibly using the config XML system built into .net (rather than registry stuff). Would require two new command-line arguments,...
I almost always have multiple CircuitPython devices connected, which means I almost always have to run `ss.exe` with the `-c` command-line option to specify which device to connect to. If...
With multiple COM ports available, auto-detection correctly connects to the first available serial port when starting/running the first instance of SimplySerial. Running a second instance should automatically connect to the...
I have no idea what the feasibility of this is, but having an actual VSCode plugin that exposes SimplySerial as its own window/panel/terminal type/whatever without hijacking the standard terminal window...
`joystick.hat[2] = True` should read `joystick.hat[2].bypass = True`
The VirtualInput class decouples I/O pins from JoystickXL inputs and allows developers to do their own input processing before passing values along to JoystickXL. This functionality needs more documentation and...
Currently, the USB HID descriptor reports a JoystickXL device as a "joystick", but some applications only appear to recognize devices that report as a "gamepad". If all that is required...