An addon for openFrameworks to connect to spacebro with a single line.
You need this repo, and clone other addons. We've prepared a script to do that for you. Install openFrameworks and then
cd your_of_path/addons
git clone [email protected]:soixantecircuits/ofxSpacebroClient.git
cd ofxSpacebroClient
bash clone_addons.sh
First, you need to regsiter your events
// Use spacebroClient.registerEvent(eventName) to create ofEvents you can listen to
ofAddListener(spacebroClient.registerEvent("stuff"), this, &ofApp::onStuff)
Then you can setup your client and register to the server
// Use spacebroClient.setup(clientName) to register as clientName to the server
spacebroClient.setup("ofxSpacebroClient")
Spacebro receives and broadcasts all messages to its clients.
git clone [email protected]:soixantecircuits/spacebro.git
cd spacebro
npm i
npm start
Run some other example to send data to ofxSpacebroClient example.
git clone [email protected]:soixantecircuits/spacebro-client.git
cd spacebro-client
npm i
npm start
Now you're ready to receive data
cd example
make
make run