Attempting to get a TXi and crow talking. Am I correct that…
print(ii.txi[1].get('param',1))
Should return the knob value from druid if things are behaving?
edit: Ah. I see. So it’s an event model based thing. So no.
I’m now trying the following on an input clock tick in a known working script:
ii.txi.get('param', 1)
ii.txi.event = function(e, data, id)
if e == 'param' then
print('recieved')
print(data)
end
end
And no dice. Can someone provide a simple working example of reading data from a TXi? Is there a druid command to verify the two devices can communicate?