public NtagI2C() { i2cCommand = new NTAG_I2C_Command(); block = new BlockMemory(i2cCommand); reg = new Registers(i2cCommand, block); address = new I2CAddress(block); }
public Registers(NTAG_I2C_Command cmdInstance, BlockMemory memory) { i2cCommand = cmdInstance; blockMem = memory; }
public I2CAddress(BlockMemory memory) { mem = memory; }