How can I use PCA9956b?

Do you have some information or sample code for PCA9956b?
This is my Sample code. But it is not working..
Help me plz

#include <Wire.h>

void setup()
{
Wire.begin(); // join i2c bus (address optional for master)
}
void loop()
{
Wire.beginTransmission(42); // transmit to device #42 (0x2A)
Wire.write(42);
Wire.write(17);
Wire.write(33);
Wire.write(10);
Wire.write(11);
Wire.write(62);
Wire.endTransmission(); // stop transmitting
//delay(100);
}

Bono1091:
This is my Sample code. But it is not working

I bet that your code is working. It is doing exactly what it is supposed to do. It may not be doing what you want it to do, but...

If you want help, you must ask in a better way. Read the forum rules. Use code tags. Explain what happens when your sketch runs. Explain what you want to happen. Give a schematic, even hand-drawn, or a clear picture.

Paul