Marcel Steinbeck
Marcel Steinbeck
Hi @1bit, I will open another branch and add your device. Would you like to test the updated driver and report if my changes were successfull?
Nice, thank you!
Did you test your device with: ``` bash jstest /dev/input/js0 # or another js* ``` Does is recognize the fire button? If not, is your device bounded by hid-retrobit? Could...
Did you install the file 99-hid-retrobit.rules into /etc/udev/rules.d? When device is plugged in what displays: ``` bash ls /sys/bus/hid/drivers/hid-retrobit ``` Does it contain a file with 1292:4154 in its name?...
> I think I did, but "ls /etc/udev/rules.d" doesn't display such a file Maybe you installed it into /lib/udev/rules.d > Yes, ls /sys/bus/hid/drivers/hid-retrobit lists a file called "0003:1292:4154.0008". It's a...
> I think this problem could be solved by taking the joystick apart and swapping the cables between the two fire buttons, Maybe a hack within the driver is applicable,...
Hi @gaminn, disconnecting slots as in Qt is not possible because references to methods can not be compared with each like in C/C++. However, when connecting signals with slots some...
Another very good reference for knot removal is available at: The Nurbs Book (2nd edition), page 179 (section 5.4)
This paper shows an approach for adaptive forward differencing of splines with arbitrary order: https://dl.acm.org/citation.cfm?id=54852.378510
[sample](https://github.com/msteinbeck/tinyspline/blob/master/src/tinyspline.h#L1106) can now be used to subdivide a spline into a sequence of points which, in turn, form a sequence a lines. An example is given at [splines_as_lines.py](https://github.com/msteinbeck/tinyspline/blob/master/examples/python/spline_as_lines.py).