


Wire.beginTransmission(SLAVE_I2C_ADDRESS) Option 1: Reading the register into an uint16_t (recommended) const uint8_t SLAVE_I2C_ADDRESS = 0b1010 Ĭonst uint16_t SLAVE_I2C_REGISTER_ADDRESS = 0x50 We will provide a full example with error handling in a followup post. This is a minimal example so it creates minimal confusion for the reader. Additionally, we wait for data using delay() instead of Wire.available(). Note that this code does not implement error handling for the sake of simplicity. In my opinion, it’s most efficient to just try out the standard way of reading a register and start from there. Note that some devices like the LAN9303 have a slightly different addressing scheme or other peculiarities. It will work with almost all I2C devices like EEPROMs, ADCs and others, provided you have the correct. The following code demonstrates how to read a register that is 2 bytes (16 bits) long over I2C.
