blob: 357459c14918d8b75cdc4d51bc15c57ebd7c32ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-- test send support
local LSend = pd.Class:new():register("lsend")
function LSend:initialize(name, atoms)
if type(atoms[1]) ~= "string" then
pd.post("lsend needs a symbol")
return false
else
self.sendto = atoms[1]
end
self.inlets = 2
self.outlets = 0
return true
end
function LSend:in_2_symbol(s)
self.sendto = s
end
function LSend:in_1(sel, atoms)
pd.send(self.sendto, sel, atoms)
end
|