From 5af83af0450ec1c14c135054cf69df5939c482ca Mon Sep 17 00:00:00 2001 From: Matt Borja <3855027+mattborja@users.noreply.github.com> Date: Wed, 13 Apr 2022 01:14:01 -0700 Subject: [PATCH] Fix misspellings in headings Headings: - "Syntax" - "Parameters" --- Language/Functions/Communication/Wire/endTransmission.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Language/Functions/Communication/Wire/endTransmission.adoc b/Language/Functions/Communication/Wire/endTransmission.adoc index 94efab0c..2040ca99 100644 --- a/Language/Functions/Communication/Wire/endTransmission.adoc +++ b/Language/Functions/Communication/Wire/endTransmission.adoc @@ -13,12 +13,12 @@ title: endTransmission() This function ends a transmission to a peripheral device that was begun by `beginTransmission()` and transmits the bytes that were queued by `write()`. As of Arduino 1.0.1, `endTransmission()` accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `endTransmission()` sends a stop message after transmission, releasing the I2C bus. If false, `endTransmission()` sends a restart message after transmission. The bus will not be released, which prevents another controller device from transmitting between messages. This allows one controller device to send multiple transmissions while in control. The default value is true. [float] -=== Syntaxx +=== Syntax `Wire.endTransmission()` `Wire.endTransmission(stop)` [float] -=== Parameterss +=== Parameters * _stop_: true or false. True will send a stop message, releasing the bus after transmission. False will send a restart, keeping the connection active. [float] @@ -31,4 +31,4 @@ This function ends a transmission to a peripheral device that was begun by `begi * _4_: other error. * _5_: timeout -- -//OVERVIEW SECTION ENDS \ No newline at end of file +//OVERVIEW SECTION ENDS