[…2 hrs later]

all systems operational, captain! thank you thank you! The last bit (your edit!) was the key!

Concerned it may have been something inside my script that caused the crash to begin with. anything here look… crash-causing? I’d thought of this as a pretty simple / straightforward thing to do that would be easy enough to expand on later…

--- JF Control
-- in1: trigger
-- in2: pitch
-- JF notes

function init()
 input[1].mode('change', 1.0, 0.1, 'rising')
 ii.jf.mode(1)
end
input[1].change = function(state)
  ii.jf.play_note(input[2].volts, 4 * math.random())
  ii.jf.transpose(-2.018)
end
1 Like