Description

beginTransmission() begins a transmission to the I2C peripheral device with the given address. Subsequently, queue bytes for transmission with write() and transmit them by calling endTransmission().

This function is part of the Wire library. See the Wire main page for more information.

Syntax

Wire.beginTransmission(address)

Parameters

  • address: the 7-bit address of the peripheral device to transmit to. Allowed data types: int.

Returns

Nothing.