hi,
dipping my toes into the norns ecosystem. I’m trying to create a simple implementation of DynKlang UGen. I want to play with a group of 16 harmonically related sine waves.
In my 16klangs.lua I have:
local freq_values = {55, 110, 220, 440, 880, 1760, 3520, 7040, 14080, 55, 110, 220, 440, 880, 1760, 3520}
local amp_values = {0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3}
local phase_values = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
engine.name = '16Klangs'
function init()
print("loaded 16Klangs engine")
engine.freqs(table.unpack(freq_vales))
engine.amps(table.unpack(amp_values))
engine.phases(table.unpack(phase_values))
end
I’m getting a supercollider fail, but maiden isn’t reporting any errors. is there something incorrect about how i’m passing the array into sc?
my repo is here: https://github.com/aidanreilly/16klangs
any pointers greatly appreciated 
EDIT: I had a typo in my sc engine which maiden didn’t report, i found the error by ssh’ing in and running /usr/bin/sclang