You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • ... The other option is actually to unroll the whole of updateRow, and update all rows at once and then turn the display off. It won't be as bright (might be better off 5v?) but it'll probably leave more time for doing other things, and the display won't 'glitch' if you spend a while calculating out what the next frame will be.

    Also, change

    setInterval(function(){
      updateRow();
    }, 1000);
    

    to

    setInterval(updateRow, 1000);
    

    That'll save you some time as well ;)

About

Avatar for Gordon @Gordon started