Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwarwick/processing-edmx
Processing library to support DMX over ethernet
https://github.com/jwarwick/processing-edmx
Last synced: about 6 hours ago
JSON representation
Processing library to support DMX over ethernet
- Host: GitHub
- URL: https://github.com/jwarwick/processing-edmx
- Owner: jwarwick
- License: mit
- Created: 2013-12-27T04:03:57.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-21T15:06:14.000Z (over 10 years ago)
- Last Synced: 2023-04-13T20:27:17.001Z (over 1 year ago)
- Language: Java
- Size: 254 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Processing eDMX Library
A [Processing](http://www.processing.org/) library to send DMX data over ethernet using [Streaming ACN](http://en.wikipedia.org/wiki/Architecture_for_Control_Networks) (ANSI E1.31).## How to Install
Extract the contents of `bin/eDMX.zip` into the Processing `libraries` folder. See also [How to Install a Contributed Library](http://wiki.processing.org/w/How_to_Install_a_Contributed_Library).## How to Build
```
% make clean
% make
% make package
```The zip file will now be at `bin/eDMX.zip`
## How to Use
See the demo applications in the `examples` folder. These are also available in Processing under the `File->Examples...` menu.``` java
import eDMX.*;sACNSource source;
sACNUniverse universe1;
byte count = 0;void setup() {
source = new sACNSource(this, "Test Source");
universe1 = new sACNUniverse(source, (short)1);
}void draw() {
universe1.fillSlots(count++);
try {
universe1.sendData();
} catch (Exception e) {
e.printStackTrace();
exit();
}
}
```## License
All code is MIT licensed. See the file LICENSE for details.