Package comm
Class I2C

Public Method stop

void stop()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

The stop() method is used to complete a transmission between the master and the slave. This method must be used after every transmission to comply with the I2C bus specification.

Example

The following example excludes the start(), write, reStart(), and read method calls which are required for an I2C communication.

   i2c.stop();

See also:

SPI
UART