following up on myself here, is there a way to set a bounds for what tracks can be focused on? By adding a simple statement that throws whatever attempts of setting it to track 7?
Also, is there some way to set the Y-axis for the recall functionality when you set up the gridnav? Or will you need a separate setup for this in your code since gridnav is basically only row1 of the grid.
Currently I am trying to fix it with this code(but I keep getting errors due to the focus bug explained above)
-- recalls
local b = 2
if recall[i].recording == true then b=15
elseif recall[i].active == true then b=11
elseif recall[i].has_data == true then b=5 end
g:led(i,8,b)
end
end
Sorry if these are stupid questions, it’s been awhile since Ive been doing any coding actively. But it feels great to at least be trying to do some coding again.
And I have to say, to the people afraid of coding, Norns/lua in itself is not difficult to grasp, especially for some reverse engineering/modification of existing code. The hard part about coding is translating “original” ideas to functioning code 