I want to send a variable number (e.g. int 1) from a lua script to Pure Data? How can I do this?
I'm trying [receive] object, but nothing happens.
This is my code in Lua. We also need pdlua to works.
local ginga = pd.Class:new():register("ginga")
function ginga:initialize(sel, atoms)
self.inlets = 1
self.outlets = 1
return true
end