Skip to content

Instantly share code, notes, and snippets.

@micuat
Created December 1, 2017 02:58
Show Gist options
  • Save micuat/9c845adf73ac17cc67a37a764736bd6b to your computer and use it in GitHub Desktop.
Save micuat/9c845adf73ac17cc67a37a764736bd6b to your computer and use it in GitHub Desktop.
Parse OSC Binary
public class OscBinary extends OscMessage {
OscBinary(byte[] bytes) {
super(new OscMessage(""));
parseMessage(bytes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment