In my case, I need to calculate PEC with : SA + Command (EEPROM Address) + 2 bytes of data otherwise it doesn't work ! It must be said that the component datasheet is not very detailed..Regards
Hey, I manage to make it work !! My mistake was in my CRC8 calculation, I didn't take into account the address of the sensor !If it's can help someone, my code : uint8_t i2cdata[4]; i2cdata[0] = 0x24; //EEPROM-address i2cdata[1] = 0x00; //Delete-...
Hum ok, I will test it.I already customize thee code, like I write previously : I send a new emissivity value (ex : Ke= 0x3333 => emissivity = 0.20)"uint8_t i2cdata[4];i2cdata[0] = 0x24; //EEPROM-addressi2cdata[1] = 0x33; //Byte, lowi2cdata[2] = 0x33...