I incorporated all those ideas and it is now running at over 13hz v 3hz before. Well done Team!
The Colour Array is only 8 elements and holds the colour of any adjacent cells to the one being tested.
Which of these two is technically quickest? Both seem to work well but I haven't got timing set up yet.
orCode:Temp = Counter // 32 If Temp = 0 THEN lefedge = 1 ENDIF IF Temp = 31 THEN rigedge = 1 ENDIF
Code:Temp = Counter & 65504 If Temp = 0 THEN lefedge = 1 ENDIF IF Temp = 31 THEN rigedge = 1 ENDIF
Here we have it at 13hz..
Bookmarks