Skip to content

Commit d6d9a5d

Browse files
committed
Update wire.md
1 parent e713df3 commit d6d9a5d

File tree

1 file changed

+4
-3
lines changed
  • content/learn/05.communication/01.wire

1 file changed

+4
-3
lines changed

content/learn/05.communication/01.wire/wire.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ A good way of adding complexity of features to your projects without adding comp
1212
This section provides an overview of the topics covered in the article.
1313

1414
- [What Is I2C?](#what-is-i2c)
15-
- [Qwiic & STEMMA QT](#qwiic--stemma-qt)
15+
- [Arduino I2C Pins](#arduino-i2c-pins)
16+
- [I2C Wiring](#i2c-wiring)
1617
- [Wire Library](#wire-library)
1718
- [Examples](#examples)
1819

@@ -113,9 +114,9 @@ To see the full API for the Wire library, visit its [documentation page](https:/
113114
- `getWireTimeoutFlag()` - Checks whether a timeout has occurred since the last time the flag was cleared.
114115

115116
### Derived libraries
116-
When you buy basically any breakout module that makes use of the I2C protocol, they will come with some library that helps you use the sensor. This library is more often than not built on top of the Wire library, and uses it under the hood, with added functionality in order to make, for example, reading temperature easier.
117+
When you buy basically any breakout module that makes use of the I2C protocol, they will come with some library that helps you use the sensor. This library is more often than not built on top of the Wire library, and uses it under the hood. Adding functionality in order to make, for example, reading temperature easier.
117118

118-
An example of this is if you want to use Afafruits MCP9808 sensor module, you download the Adafruit_MCP9808 Library from the IDEs library manager, which enables you to use functions such as `tempsensor.readTempC()` in order to request from the right address, and read the information with just a single line instead of writing the Wire code yourself.
119+
An example of this is if you want to use Adafruits MCP9808 sensor module, you download the Adafruit_MCP9808 Library from the IDEs library manager, which enables you to use functions such as `tempsensor.readTempC()` in order to read the sensors temperature data by requesting from the right address, and read the information returned with just a single line instead of writing the Wire code yourself.
119120

120121
To learn how to install libraries, check out our [guide to installing libraries](/software/ide-v2/tutorials/ide-v2-installing-a-library).
121122

0 commit comments

Comments
 (0)