├── .gitignore ├── LICENSE ├── README.md ├── examples ├── example_recv │ ├── addons.make │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── example_send │ ├── addons.make │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── example_send_threaded │ ├── addons.make │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── artnet ├── ofxArtnetMessage.cpp ├── ofxArtnetMessage.h ├── ofxArtnetProtocol.cpp ├── ofxArtnetProtocol.h ├── ofxArtnetReceiver.cpp ├── ofxArtnetReceiver.h ├── ofxArtnetSender.cpp └── ofxArtnetSender.h ├── ofxArtnet.cpp └── ofxArtnet.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/README.md -------------------------------------------------------------------------------- /examples/example_recv/addons.make: -------------------------------------------------------------------------------- 1 | ofxArtnet 2 | ofxNetwork 3 | -------------------------------------------------------------------------------- /examples/example_recv/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_recv/src/main.cpp -------------------------------------------------------------------------------- /examples/example_recv/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_recv/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/example_recv/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_recv/src/ofApp.h -------------------------------------------------------------------------------- /examples/example_send/addons.make: -------------------------------------------------------------------------------- 1 | ofxArtnet 2 | ofxNetwork 3 | -------------------------------------------------------------------------------- /examples/example_send/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send/src/main.cpp -------------------------------------------------------------------------------- /examples/example_send/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/example_send/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send/src/ofApp.h -------------------------------------------------------------------------------- /examples/example_send_threaded/addons.make: -------------------------------------------------------------------------------- 1 | ofxArtnet 2 | ofxNetwork 3 | -------------------------------------------------------------------------------- /examples/example_send_threaded/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send_threaded/src/main.cpp -------------------------------------------------------------------------------- /examples/example_send_threaded/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send_threaded/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/example_send_threaded/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/examples/example_send_threaded/src/ofApp.h -------------------------------------------------------------------------------- /src/artnet/ofxArtnetMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetMessage.cpp -------------------------------------------------------------------------------- /src/artnet/ofxArtnetMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetMessage.h -------------------------------------------------------------------------------- /src/artnet/ofxArtnetProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetProtocol.cpp -------------------------------------------------------------------------------- /src/artnet/ofxArtnetProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetProtocol.h -------------------------------------------------------------------------------- /src/artnet/ofxArtnetReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetReceiver.cpp -------------------------------------------------------------------------------- /src/artnet/ofxArtnetReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetReceiver.h -------------------------------------------------------------------------------- /src/artnet/ofxArtnetSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetSender.cpp -------------------------------------------------------------------------------- /src/artnet/ofxArtnetSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/artnet/ofxArtnetSender.h -------------------------------------------------------------------------------- /src/ofxArtnet.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/ofxArtnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroyuki/ofxArtnet/HEAD/src/ofxArtnet.h --------------------------------------------------------------------------------