Initial commit
commit
902fb33599
|
@ -0,0 +1,9 @@
|
||||||
|
(
|
||||||
|
name: "TouchOSC",
|
||||||
|
summary: "Utilities for binding functions to OSC triggers",
|
||||||
|
version: "1.0.0",
|
||||||
|
schelp: "TouchOSC",
|
||||||
|
dependencies: [],
|
||||||
|
license: "GPL",
|
||||||
|
copyright: "Mike Lynch 2022"
|
||||||
|
)
|
|
@ -0,0 +1,19 @@
|
||||||
|
// Class for binding to a TouchOSC interface
|
||||||
|
//
|
||||||
|
// I don't feel well enough to actually code this today so here are some notes.
|
||||||
|
// - bind a /url to a function
|
||||||
|
// - provide builtins for linear and exponential controls
|
||||||
|
// - provide builtins for X-Y and modal/radio buttons
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
TouchOSC {
|
||||||
|
var <>ip, <>port;
|
||||||
|
|
||||||
|
*new { | ip, port |
|
||||||
|
^super.new.init(ip, port)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue