This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMDS64EVM: OLED Display Not working

Part Number: TMDS64EVM
Other Parts Discussed in Thread: TCA6424, TCA6424A

Hi Support Team,

Recently I ordered TMDS64EVM and tried to run the display. There is no backlight on the display and when I run I2C scan code It doesn't show the address on the display i.e. 0x3C

But when I import the temperature measurement example it's running fine. I made minor changes in that code to detect OLED display but it's not detecting it on this address.

This is the code for scanning 

for (address = 1; address < 127; address++) {
status = I2C_probe(i2cHandle, address);
if (status == 0) { // Or whatever value signifies success in your environment
DebugP_log("I2C device found at address 0x%02X\n", address);
}

The output I get is 

I2C device found at address 0x22
I2C device found at address 0x40
I2C device found at address 0x41
I2C device found at address 0x46
I2C device found at address 0x48
I2C device found at address 0x49
I2C device found at address 0x4B
I2C device found at address 0x4C
I2C device found at address 0x4E

But the is no 0x3C. And there is no extra address that well that might be of the display

can you help with this ?