Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misspellings in headings #874

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Language/Functions/Communication/Wire/endTransmission.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
//OVERVIEW SECTION ENDS