MPU6050 reading values

I'm trying to read the values ??of MPU6050 and do not know if they will be right. First are the values ??vary between 0 and 255 (high and low) and not between -128 and 127. As soon as I did not give negative but positive numbers. The first table was made with MPU6050 vertically and to the right and the second table is vertical and to the left.

GyroX
GyroY
GyroZ
AcelX
AcelY
AcelZ

39423 47103 46591 51967 38399 48895 39679 43519 43519 44799
44544 30464 34048 37888 41728 35328 30976 37632 39168 35328
57855 62463 5551 51199 59903 57343 60159 59135 57087 62719
17471 34881 30784 40000 42048 2112 29760 17472 41024 35904
50430 51454 25854 45310 35070 43262 42238 31998 39166 2302
60667 17658 22778 19707 36091 59643 18683 54523 19706 8442

44799 45567 43775 43519 48383 42494 43519 40959 48639 47615
35328 37376 37888 38144 34816 40448 37120 37376 38144 39424
62719 52735 56831 62719 52991 49663 11264 61183 62719 5551
35904 41024 41024 53312 47168 49216 18496 13376 25664 40000
2302 50431 64766 25854 46335 59646 34046 50430 54526 48383
8442 54523 5372 1276 60667 49403 53499 41211 42236 6396
[/table]

Hello I would like to know if I'm doing a reading at the correct values ??MPU6050??
my values ??vary between 0 and 255 and not between -128 to 17.

This position:
GyroX
GyroY
GyroZ
AcelX
Acely
AcelZ
And i reading 10x.
This set of 10 values ??were taken with MPU6050 vertically facing to the right.

39423 47103 46591 51967 38399 48895 39679 43519 43519 44799
44544 30464 34048 37888 41728 35328 30976 37632 39168 35328
57855 62463 5551 51199 59903 57343 60159 59135 57087 62719
17471 34881 30784 40000 42048 2112 29760 17472 41024 35904
50430 51454 25854 45310 35070 43262 42238 31998 39166 2302
60667 17658 22778 19707 36091 59643 18683 54523 19706 8442

And this set of 10 points were taken with MPU6050 vertically facing to the left.

44799 45567 43775 43519 48383 42494 43519 40959 48639 47615
35328 37376 37888 38144 34816 40448 37120 37376 38144 39424
62719 52735 56831 62719 52991 49663 11264 61183 62719 5551
35904 41024 41024 53312 47168 49216 18496 13376 25664 40000
2302 50431 64766 25854 46335 59646 34046 50430 54526 48383
8442 54523 5372 1276 60667 49403 53499 41211 42236 6396
[/table]

The problem that you have not shared with us is probably in the program that you have not shared with us.

The question makes no sense without seeing your code and wiring schematic and even then it will be difficult to comment as your environment will be different to everyone elses.

THIS IS MY PRINCIPAL CODE

//valor1 -> GyrX = low ; valor1H-> GyrX= high ;
//valor2 -> GyrY = low ; valor2H-> GyrY= high ;
//valor3-> GyrZ= low ; valor3H-> GyrZ= high ;
//valor4-> AcelX = low ; valor4H-> AcelX= high ;
//valor5-> AcelY = low ; valor5H-> AcelY= high ;
//valor6-> AcelZ = low ; valor6H-> AcelZ= high ;

GYRO_XOUT_OFFSET=(valor1H<<8 ) + valor1;
CalibrateGXX[index]=GYRO_XOUT_OFFSET;
GYRO_YOUT_OFFSET=(valor2H<<8 ) + valor2;
CalibrateGXY[index]=GYRO_YOUT_OFFSET;
GYRO_ZOUT_OFFSET=(valor3H<<8 ) + valor3;
CalibrateGXZ[index]=GYRO_ZOUT_OFFSET;

ACCEL_XOUT_OFFSET=(valor4H<<8 ) + valor4;
CalibrateAXX[index]=ACCEL_XOUT_OFFSET;
ACCEL_YOUT_OFFSET=(valor5H<<8 ) + valor5;
CalibrateAXY[index]=ACCEL_YOUT_OFFSET;
ACCEL_ZOUT_OFFSET=(valor6H<<8 ) + valor6;
CalibrateAXZ[index]=ACCEL_ZOUT_OFFSET;

How are you getting the values from the device ?

Do not post the same question twice.

I'm getting through the I2C protocol.
I wanted to know was how the values ??vary and intermediate points or origins points. Learn why the numbers

When the device is sitting still, the accleration values will indicate which way the gravity is pulling on the sensor element.
If it is sitting flat on the table, one direction will be sometning like 16000 and the other 2 values zero.

The gyro values will indicate rotation. when it is sitting still, they should be close to zero.

What do you say about my valors?

There is page with samples so you can see how much noise they have:
http://playground.arduino.cc/Main/MPU-6050#measurements