interface.server
Version:
Design interactive interfaces using various devices and OSC/0MQ/WebSockets
14 lines (10 loc) • 354 B
JavaScript
module.exports = {
name:'guitest',
transports: [{ type:'osc', port:15000 }],
inputs: { blah2: { min: 0, max: 1 } },
outputs: {},
mappings: [
{ input: { io:'mydevice', name:'slider' }, output:{ io:'test1', name:'blah2' } },
{ input: { io:'mydevice', name:'button' }, expression: function( v ){ console.log( 'yo' ); } }
]
}