UKHeliBob:
To access say the first bit of the third level you could useboolean theBool = bitRead(theData[2, 0]);
The closing square bracket is placed wrong IMHO.
boolean theBool = bitRead(theData[2], 0);
UKHeliBob:
To access say the first bit of the third level you could useboolean theBool = bitRead(theData[2, 0]);
The closing square bracket is placed wrong IMHO.
boolean theBool = bitRead(theData[2], 0);