Yes, the 40h runs without any problems on a Win10 PC. I also have a PICnome that has the same LED error on the Norns Shield.
Basic example: “Norns Study 4” of the official documentation.
I have added a g:refresh() inside the “for loop” of the grid_redraw function. Actually, this “idea” was simply a copy/paste mistake.
function grid_redraw()
g:all(0)
for i=1,16 do
g:led(i,steps[i],i==position and 15 or 4)
g:refresh()
end
g:refresh()
end
In the Awake script I added a g:refresh() command to the line 387. In the Foulplay script I added a g:refresh() command to the line 797. In all cases it is the first “for loop” of the grid_redraw.