Thanks for fixing that Nick.
This line
for (int i = 0; i<24; i=i+1){
should probably have been
for (byte i = 0; i<24; i=i+1){
as the array is defined as bytes.
Thanks for fixing that Nick.
This line
for (int i = 0; i<24; i=i+1){
should probably have been
for (byte i = 0; i<24; i=i+1){
as the array is defined as bytes.