Return a single bit in a 32-bit unsigned integer.
Example: viewUint32Bool(0xF010, 8) // --> true
bool extractUint32Bool(int uint32, int shift) { return 0x1 & (uint32 >> shift) != 0; }