03.05.2023, 11:00
Wow thank you admin!
I never thought about that.
I executed the installation script as you wrote and now I can successfully send request to Abelton.
However I am having difficulties with receiving messages from Abelton.
This is what I am trying on resident script with 0 interval but it seems like I'm not receiving anything.
Can you tell if I'm doing something wrong?
I never thought about that.
I executed the installation script as you wrote and now I can successfully send request to Abelton.
However I am having difficulties with receiving messages from Abelton.
This is what I am trying on resident script with 0 interval but it seems like I'm not receiving anything.
Can you tell if I'm doing something wrong?
Code:
local losc = require'losc.init'
local plugin = require'losc.plugins.udp-socket'
local udp = plugin.new {
recvAddr = '127.0.0.1',
recvPort = 11001,
ignore_late = true, -- ignore late bundles
}
local osc = losc.new {plugin = udp}
osc:add_handler('*', function(data)
log(data)
end)