Quote Originally Posted by champion
I guess what I'm asking is how to take the 0 and 1 bit from one number and put them into a seperate number so that I can further scale just those two bits. Thanks!!!
This will give you a value with just the first two bits of the original byte:

TwoBits = OrigByte & %00000011

HTH,
Steve