Page 1 of 1

I2C read in C#

Posted: Sat Dec 12, 2009 9:29 pm
by pgans
I'm having problems declaring the variable used in the I2C_read command.

I'm sure it is a simple fix, but I cannot quite get it figured out.

doesWork = i2cDevice.I2C_Read(device.SlaveAddress, memoryAddress, 0, ref theData)

how do I declare theData? The previous read is just trying to read from the default pointer.

Thanks!

Re: I2C read in C#

Posted: Sun Dec 13, 2009 3:38 am
by serg
You don't need the "ref" keyword and in case of MemoryAddressSize==0 you can pass 0 for the MemoryAddress parameter.

byte[] theData = new byte[32];
doesWork = i2cDevice.I2C_Read(device.SlaveAddress, 0, 0, theData);

For more information see .NET/SUB-20 documentation and C# sample application under SUB-20\sample\.NET\c#
Regards