Omron d6t-8l-06 temp sensor used i2c

hellow guys ? i need to d6t-8l-06 temp sensor code example

I’ve looked for a arduino example and found this.
http://forum.arduino.cc/index.php?topic=323245.0
The example for omron looks easy to convert to photo arduino.
{
I2C_start();
I2C_send1( 0x14 , 0x4C ); // 14h = { 0Ah(Addr7) : Write(0b) } I2C_repeatstart();
I2C_getx( 0x15 , readbuff , 35 ); // 15h = { 0Ah(Addr7):Read },35 = 2*(1+16)+1 I2C_stop(); If(!D6T_checkPEC(readbuff,34)){ return -1; // error

START send address , then 0x4c
RESTART send address and ask for 32 byte to read.

Wire.begin(); <----- in setup();

Wire.beginTransmission(0x14);
Wire.write(0x42);
Wire.endTransmission();
Wire.requestFrom(0x14, 32);

now you just need to read the data , all 32 byte of it .

char c = Wire.read();