We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi all,
I was able to make it work on Windows with of0.12.
These are the lib updates required: https://gist.github.com/Vamoss/a7f769845cd47c4c7ea076f68617ffb5
On the ofxEtherdream.cpp, you gonna need to update: usleep(1000000);
usleep(1000000);
To: ofSleepMillis(1000);
ofSleepMillis(1000);
And update the init() to return no value, because it is a void function, and it cant return nothing.
init()
I didnt tested if it still works on Mac, but I think it kept the requirements to work in both.
Cheers, Vamoss
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi all,
I was able to make it work on Windows with of0.12.
These are the lib updates required:
https://gist.github.com/Vamoss/a7f769845cd47c4c7ea076f68617ffb5
On the ofxEtherdream.cpp, you gonna need to update:
usleep(1000000);
To:
ofSleepMillis(1000);
And update the
init()
to return no value, because it is a void function, and it cant return nothing.I didnt tested if it still works on Mac, but I think it kept the requirements to work in both.
Cheers,
Vamoss
The text was updated successfully, but these errors were encountered: