File: lsend.pd_lua

package info (click to toggle)
pd-lua 0.12.23%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,912 kB
  • sloc: ansic: 3,733; lisp: 66; makefile: 64
file content (23 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (7)
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