DeviceI2C stop()
Create a stop condition on the I2C bus, ending the current transfer.
#include <Ports.h>
#include <RF12.h> // needed to avoid a linker error :(
PortI2C myBus (1 /*, PortI2C::KHZ400 */);
DeviceI2C myDev (myBus, 0x77);
void myDev.stop();
Parameters
None.
Notes
This function is defined in both class PortI2C and in class DeviceI2C, and has the same effect in both.