Search found 395 matches

by whoenig
Sat Nov 29, 2014 6:14 pm
Forum: Developer Discussions
Topic: [Video] Alternative Kinect Control (using depth images)
Replies: 114
Views: 69309

Re: [Video] Alternative Kinect Control (using depth images)

There is this one comment in the code, which makes me believe that the PS3 driver somehow maps buttons to (virtual) axes as well: # Strange bug: left button as axis doesnt work. So use button instead I never used the PS3 controller myself and work with an XBox controller instead. Those have default ...
by whoenig
Sat Nov 29, 2014 6:05 pm
Forum: Support
Topic: [SOLVED] Segmentation fault at exit of gui
Replies: 27
Views: 32317

Re: Segmentation fault at exit of gui

PySDL dependency seems to be added just a day ago: https://github.com/bitcraze/crazyflie-clients-python/commit/19542360d869827cdb81f595628573fd1545fe90. I didn't update yet so I am not sure about your second error. However, the first one looks like you might try to use Qt4 and Qt5 at the same time. ...
by whoenig
Sat Nov 29, 2014 12:31 am
Forum: Developer Discussions
Topic: [Video] Alternative Kinect Control (using depth images)
Replies: 114
Views: 69309

Re: [Video] Alternative Kinect Control (using depth images)

How many buttons does your joystick have according to jstest? For example I get the following Axes: 0: -3565 1: 2142 2:-32767 3: 2181 4: -1004 5:-32767 6: 0 7: 0 Buttons: 0:off 1:off 2:off 3:off 4:off 5:off 6:off 7:off 8:off 9:off 10:off Hence, I have only 11 buttons and I would need to change the i...
by whoenig
Fri Nov 28, 2014 6:54 pm
Forum: Developer Discussions
Topic: [Video] Alternative Kinect Control (using depth images)
Replies: 114
Views: 69309

Re: [Video] Alternative Kinect Control (using depth images)

Great progress! I guess you are just using a different controller than what Oliver used to use (PS3?!). If you look in joy_driver_pid.py, line 128 you can see that the offending button is defined as index 13. If your controller has less than 14 buttons, you would crash. You can use jstest to see the...
by whoenig
Fri Nov 28, 2014 6:47 pm
Forum: Developer Discussions
Topic: radio transmitter and crazyflie 2.0
Replies: 4
Views: 4511

Re: radio transmitter and crazyflie 2.0

Do you mean a list of supported transmitters or where to buy them?
I think the only real supported product is the ESKY controller, however it requires a special firmware since the protocol is slightly different.
There were a few projects here on the forum of home-made transmitters as well.
by whoenig
Fri Nov 28, 2014 6:44 pm
Forum: Support
Topic: [SOLVED] Segmentation fault at exit of gui
Replies: 27
Views: 32317

Re: Segmentation fault at exit of gui

This is definitely not normal. In fact, because it is written in python it should be technically impossible to segfault... You can try running it with gdb to get a full stack trace on where the crash is happening and post the stack here.
by whoenig
Thu Nov 27, 2014 5:59 am
Forum: Developer Discussions
Topic: How to create a new controller for the crazyflie?
Replies: 8
Views: 4361

Re: How to create a new controller for the crazyflie?

I guess that is an arbitrary choice. The leap motion SDK gives you back angles in degrees. The crazyflie itself takes numbers from -30 to 30 for roll/pitch, which somehow map to the angle (not sure how exactly - would need to look in the firmware code). The yaw is the angular rate between -200 and 2...
by whoenig
Thu Nov 27, 2014 5:54 am
Forum: Developer Discussions
Topic: Direct Video on Smarphone over CrazyRadio data communication
Replies: 2
Views: 2587

Re: Direct Video on Smarphone over CrazyRadio data communica

There was a master thesis on that: http://www.bitcraze.se/2012/06/camera-addon-master-thesis/ I think the achievable resolution with the Crazyradio alone is fairly low. Additionally, getting high-bandwidth also increases the latency, which is bad for sending the control commands or getting real-time...
by whoenig
Thu Nov 27, 2014 5:50 am
Forum: Support
Topic: USB PPM RC Transmitter YAW only in one direction
Replies: 6
Views: 5483

Re: USB PPM RC Transmitter YAW only in one direction

Can you try adding a print statement in pygamereader.py, line 66 to print the axisvalue? Just to see if there is an issue with the overall range of the yaw axis.