Skip to content

An addon for openFrameworks to connect to spacebro with a single line.

Notifications You must be signed in to change notification settings

spacebro/ofxSpacebroClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

An addon for openFrameworks to connect to spacebro with a single line.

Install

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

Usage

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")

Test

Run spacebro

Spacebro receives and broadcasts all messages to its clients.

git clone [email protected]:soixantecircuits/spacebro.git
cd spacebro
npm i
npm start

Run spacebro-client example

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

Run this example

Now you're ready to receive data

cd example
make
make run

About

An addon for openFrameworks to connect to spacebro with a single line.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published