Uses of Interface
com.pi4j.io.i2c.I2CDevice
-
Packages that use I2CDevice Package Description com.pi4j.io.i2c com.pi4j.io.i2c.impl -
-
Uses of I2CDevice in com.pi4j.io.i2c
Methods in com.pi4j.io.i2c that return I2CDevice Modifier and Type Method Description I2CDeviceI2CBus. getDevice(int address)Returns i2c device. -
Uses of I2CDevice in com.pi4j.io.i2c.impl
Classes in com.pi4j.io.i2c.impl that implement I2CDevice Modifier and Type Class Description classI2CDeviceImplImplementation of i2c device.Methods in com.pi4j.io.i2c.impl that return I2CDevice Modifier and Type Method Description I2CDeviceI2CBusImpl. getDevice(int address)Returns i2c device implementation (I2CDeviceImpl).Methods in com.pi4j.io.i2c.impl with parameters of type I2CDevice Modifier and Type Method Description voidI2CBusImpl. ioctl(I2CDevice device, long command, int value)voidI2CBusImpl. ioctl(I2CDevice device, long command, ByteBuffer values, IntBuffer offsets)intI2CBusImpl. readByte(I2CDevice device, int localAddress)intI2CBusImpl. readByteDirect(I2CDevice device)intI2CBusImpl. readBytes(I2CDevice device, int localAddress, int size, int offset, byte[] buffer)intI2CBusImpl. readBytesDirect(I2CDevice device, int size, int offset, byte[] buffer)<T> TI2CBusImpl. runBusLockedDeviceAction(I2CDevice device, Callable<T> action)Selects a device on the bus for an action, and locks parallel access around file descriptor operations.protected voidI2CBusImpl. selectBusSlave(I2CDevice device)Selects the slave device if not already selected on this bus.protected voidI2CBusImpl. testForProperOperationConditions(I2CDevice device)intI2CBusImpl. writeAndReadBytesDirect(I2CDevice device, int writeSize, int writeOffset, byte[] writeBuffer, int readSize, int readOffset, byte[] readBuffer)voidI2CBusImpl. writeByte(I2CDevice device, int localAddress, byte data)voidI2CBusImpl. writeByteDirect(I2CDevice device, byte data)voidI2CBusImpl. writeBytes(I2CDevice device, int localAddress, int size, int offset, byte[] buffer)voidI2CBusImpl. writeBytesDirect(I2CDevice device, int size, int offset, byte[] buffer)
-