-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tilt & LED - Ubuntu 14.04 - Kinect 1473 #451
Comments
I believe audio firmware is required to control the motor of that model. The easiest way I know is to add ofxKinectExtras to your project and load it into libfreenect. |
Thanks for the fast comment, yet as I mentioned, I don't use freenect as a project, is there any other way or I'm in trouble just because I have the 1473 model? |
I think then you are stuck, unless you can modify Until recently it would fail completely in this case, so I am glad to hear that the video shows up at least. |
Sorry for bumping, left it for a while. How can I load firmware to the glview and what do you mean by "firmware"? And how does the ofxKinect could help me? I see only 2 functions in there(getFWSize1473(); and getFWSizek4w();) which I couldn't find any reference to them (or similar) in freenect and particularly in the "glview" program. |
The firmware is executable code that runs on the Kinect. Microsoft owns that code and we don't have an open-source alternative. libfreenect provides a way to send the firmware to the Kinect, but it would be legally risky to provide the firmware itself. The fwfetcher.py program is one workaround; it downloads and extracts the firmware from a freely-available XBox360 system update package. But it only works for model 1414. For the newer models, the solution is to compile the firmware into a byte array and upload it at runtime. You can do so by modifying your program to pass a pointer to the byte array to libfreenect, like these instructions demonstrate. You would need to add that code into glview and also make sure the ofxKinectExtras.cpp file is added to the compilation. It will also be necessary to compile the program as C++ since the ofxKinectExtras.h file is C++. I wish we could just ship the firmware, but the legal situation is too murky for me. |
Hi,
I'm using Ubuntu 14.04 with Kinect(Xbox 360) model 1473.
I compiled and installed the latest libfreenect.
running "freenect-glview" shows the video streams, yet with a strange error:
"Could not open audio: -4", And I can't control the Tilt motor and LED.
lsusb shows:
Bus 003 Device 007: ID 045e:02ae Microsoft Corp. Xbox NUI Camera
Bus 003 Device 023: ID 045e:02ad Microsoft Corp. Xbox NUI Audio
Bus 003 Device 004: ID 045e:02c2 Microsoft Corp.
(No NUI Motor as in previous models).
This is not a new problem(#376),
yet I searched everywhere and couldn't fix it.
(I need to grab .rawlog videos using MRPT, yet its not working, and I think its connected.)
Anyone knows how to fix it?
Thanks.
The text was updated successfully, but these errors were encountered: