What does <<8| in the programming example for the mpu 6050. it reads
AcX=Wire.read()<<8|Wire.read();
For example, |, means a bit-wise OR
<<8 means a bitwise left-shift (8 times)