温度传感器ds1631读出来的是华氏度仍是摄氏度

温度传感器ds1631读出来的是华氏度还是摄氏度?
如题,我下面的代码读出来的到底是华氏度还是摄氏度呢,我找不到可以佐证的文档或者什么...
谁用过这芯片帮我解释下吧,不胜感激...!!!
I2CSendByte(0x51); // send Start Convert Tcommand byte 
stop(); // send STOP 
I2CBitDly(); // wait 

I2CSendAddr(Address,WRITE); // send START and control byte 
I2CSendByte(0xAA); // send Read Temperature command byte 

I2CSendAddr(Address,READ); // send repeat START and control byte 
MSB = I2CGetByte(0); // read Temp MSB 
LSB = I2CGetByte(1); // read Temp LSB 
stop(); // send STOP 

if(MSB>=0x80) //if sign bit is set, then temp is negative 
temp_c = (float)((MSB<<8 | LSB) - 65536) * 0.0625; 
else 
temp_c = (float)((MSB<<8|LSB) * 0.00390625); 

------解决方案--------------------
小弟追问楼主问题,求大神解答。。。不胜感激!!!
------解决方案--------------------
datasheet里面咋没写?按摄氏度来的

The DS1631, DS1631A, and DS1731 measure  temperature using bandgap-based temperature sensors. A
delta-sigma analog-to-digital converter (ADC) converts the measured temperature to a 9-, 10-, 11-, or 12-
bit (user-selectable) digital value that is calibrated in C
; for F applications a lookup table or conversion routine must be used