default char[] |
I2CRegisterDataReader.readRegisterCharArray(int register,
int numberOfBytes) |
Read ASCII data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new character array.
|
default char[] |
I2CRegisterDataReader.readRegisterCharArray(int register,
int offset,
int numberOfBytes) |
Read ASCII data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new character array.
|
default char[] |
I2CRegisterDataReader.readRegisterCharArray(int register,
Charset charset,
int numberOfBytes) |
Read data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new character array.
|
default char[] |
I2CRegisterDataReader.readRegisterCharArray(int register,
Charset charset,
int offset,
int numberOfBytes) |
Read data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new character array.
|
default CharBuffer |
I2CRegisterDataReader.readRegisterCharBuffer(int register,
int numberOfBytes) |
Read ASCII data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new CharBuffer instance.
|
default CharBuffer |
I2CRegisterDataReader.readRegisterCharBuffer(int register,
int offset,
int numberOfBytes) |
Read ASCII data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new CharBuffer instance.
|
default CharBuffer |
I2CRegisterDataReader.readRegisterCharBuffer(int register,
Charset charset,
int numberOfBytes) |
Read data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new CharBuffer instance.
|
default CharBuffer |
I2CRegisterDataReader.readRegisterCharBuffer(int register,
Charset charset,
int offset,
int numberOfBytes) |
Read data from the I2C device register up to a specified length (number of bytes) and
return the data read in a new CharBuffer instance.
|
default String |
I2CRegisterDataReader.readRegisterString(int register,
int numberOfBytes) |
Read ASCII data from the I2C device registere up to a specified length (number of bytes) and
return the data read in a new String instance.
|
default String |
I2CRegisterDataReader.readRegisterString(int register,
Charset charset,
int offset,
int numberOfBytes) |
Read data from the I2C device registere up to a specified length (number of bytes) and
return the data read in a new String instance.
|