Uses of Class
cork.net.i2c.I2CException

Packages that use I2CException
cork.module.devantech   
cork.module.ti   
cork.net.i2c   
 

Uses of I2CException in cork.module.devantech
 

Methods in cork.module.devantech that throw I2CException
 void SRF08.ping(int scale)
          Causes the SRF08 to ping.
 int SRF08.getSoftwareRevision()
          Gets the softwareRevision attribute of the SRF08 object
 int SRF08.getLightLevel()
          Gets the light level that the SRF08 detected.
 int[] SRF08.getRange(int count)
          Gets the range of the last ping.
 void CMPS03.markCardinalPoint()
          Used to calibrate the CMPS03 module.
 int CMPS03.getBearingByte()
          Gets the bearing of the compass as a value between 0-255.
 int CMPS03.getBearingDegrees()
          Gets the bearing of the compass in degrees.
 int CMPS03.getOppositBearingDegrees()
          Gets the opposit bearing from the bearing in degrees.
 

Uses of I2CException in cork.module.ti
 

Methods in cork.module.ti that throw I2CException
 void PCF8574.getBits(boolean[] buffer)
          Gets the bits of the PCF8574 object.
 int PCF8574.getByte()
          Gets the bits of the PCF8574 object.
 void PCF8574.setByte(int bits)
          Sets the bits of the PCF8574 object.
 void PCF8574.setBits(boolean[] bits)
          Sets the bits of the PCF8574 object.
 

Uses of I2CException in cork.net.i2c
 

Methods in cork.net.i2c that throw I2CException
 void AbstractI2CDevice.start()
          Start communication on the I2C bus.
 void AbstractI2CDevice.stop()
          Stops communication the I2C bus.
 void AbstractI2CDevice.tick()
          Ticks over the SCL line.
 void AbstractI2CDevice.capture()
          Captures the BusMaster for exclusive access by a specific device.
 void AbstractI2CDevice.release()
          Releases and frees the BusMaster for capture by another device.
 void AbstractI2CDevice.read(int id, int[] buffer, int count)
          Reads data from the specified ID.
 void AbstractI2CDevice.write(int id, int[] buffer, int count)
          Writes data to the specified ID.
 void I2CLineDriver.tick(I2CDevice device)
          ticks the SCL line once.
 void I2CLineDriver.stop(I2CDevice device)
          Signals stop communication on the bus.
 void I2CLineDriver.read(I2CDevice device, int id, int[] buffer, int count)
          Reads data from the specified ID.
 void I2CLineDriver.write(I2CDevice device, int id, int[] buffer, int count)
          Writes data to the specified ID.
 void I2CLineDriver.start(I2CDevice device)
          Description of the Method
 void I2CBusMaster.start(I2CDevice device)
          Start communication on the I2C bus.
 void I2CBusMaster.stop(I2CDevice device)
          Stops communication the I2C bus.
 void I2CBusMaster.tick(I2CDevice device)
          Ticks over the SCL line.
 void I2CBusMaster.capture(I2CDevice device)
          Captures the BusMaster for exclusive access by a specific device.
 void I2CBusMaster.release(I2CDevice device)
          Releases and frees the BusMaster for capture by another device.
 void I2CBusMaster.read(I2CDevice device, int id, int[] buffer, int count)
          Reads data from the specified ID.
 void I2CBusMaster.write(I2CDevice device, int id, int[] buffer, int count)
          Writes data to the specified ID.
 void AbstractLineDriver.capture(I2CDevice device)
          Captures the line driver for exclusive access by a specific device.
 void AbstractLineDriver.release(I2CDevice device)
          Releases and frees the line driver for capture by another device.