Example #1
0
        public byte[] ReadEEPROM()
        {
            byte[] retVal = new byte[256];

            for (int i = 0; i < 256; i++)
            {
                retVal[i] = (byte)SimpleIOClass.ReadEEPROM((uint)i);
            }

            return(retVal);
        }
Example #2
0
 public byte ReadEEPROM(byte address)
 {
     return((byte)SimpleIOClass.ReadEEPROM((uint)address));
 }