Hi.
I need to translate a code block written in python to C#.
The python block is
bus = SMBus(1)
address = 0x3C
bus.write_byte_data(address, 0x40, value)
Here is my C# block
_i2cBus = I2cBus.Create(1);
_i2cDevice = _i2cBus.CreateDevice(0x3C);
_i2cDevice.WriteByte(value); //Problem
value is a byte.
Problem is how to transfer the REGISTER (0x40)?
Thanks.