Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (11 sloc) 244 Bytes
(
Server.default = Server.local;
~m = MonoM.new("/monome", 0);
s.waitForBoot({
~m.useDevice(0);
OSCFunc.newMatching(
{ arg message, time, addr, recvPort;
~m.ledset(message[1], message[2], message[3]);
}, "/monome/grid/key");
});
)