Arduino Bit Masks and Bitwise Operations
A bit mask (or bitmask) is a sequence of bits that can be used with bitwise operations to change or flip bits in a byte or nibble. That may be a convoluted definition so let me give an example using Arduino-style code to try to clarify. byte myByte B01001011; myByte = myByte & B00010001; This