ofxEtherdream icon indicating copy to clipboard operation
ofxEtherdream copied to clipboard

C++ openFrameworks addon for interfacing with the Etherdream DAC

Results 7 ofxEtherdream issues
Sort by recently updated
recently updated
newest added

`return 0` in `void ofxEtherdream::init()` is throwing build errors with latest oF. This PR removes them. Tested with oF `0.12.0`.

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:...

startThread fix for 0.10.1

etherdream.c line 561: memset(d->buffer, sizeof(d->buffer), 0); it should read: memset(d->buffer, 0, sizeof(d->buffer)); library looks nice!

g++ on ubuntu didn't want to compile a "void" function that returns an "int". Compiles fine after this change

Is it possible to see an example of how to use the bAutoConnect and/or checkConnection(true) function? I am getting periodic write timeouts from my etherdream, but neither of these thing...