Skip to content

Commit 4ecaa13

Browse files
committed
I2C library added.
1 parent 68f7145 commit 4ecaa13

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

i2c/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ the `Responder` in this event.
3232
4. [API](./README.md#4-api)
3333
4.1 [Channel class](./README.md#41-channel-class)
3434
4.2 [Initiator class](./README.md#42-initiator-class)
35-
4.2.1 [Configuration](./README.md#21-configuration) Fine-tuning the interface.
36-
4.3 [Responder class](./README.md#431-responder-class)
35+
4.2.1 [Configuration](./README.md#421-configuration) Fine-tuning the interface.
36+
4.3 [Responder class](./README.md#43-responder-class)
3737
5. [Limitations](./README.md#5-limitations)
38-
5.1 [Blocking](./TUTORIAL.md#51-blocking)
39-
5.2 [Buffering](./TUTORIAL.md#52-buffering)
40-
5.3 [Responder crash detection](./TUTORIAL.md#53-responder-crash-detection)
38+
5.1 [Blocking](./README.md#51-blocking)
39+
5.2 [Buffering](./README.md#52-buffering)
40+
5.3 [Responder crash detection](./README.md#53-responder-crash-detection)
4141

4242
# 1. Files
4343

@@ -169,7 +169,7 @@ Constructor args:
169169

170170
The `reset` tuple consists of (`pin`, `level`, `time`). If provided, and the
171171
`Responder` times out, `pin` will be set to `level` for duration `time` ms. A
172-
Pyboard target with an active high reset might have:
172+
Pyboard or ESP8266 target with an active low reset might have:
173173

174174
```python
175175
(machine.Pin('X12'), 0, 200)
@@ -188,7 +188,8 @@ Class variables:
188188
Class variables should be set before instantiating `Initiator` or `Responder`.
189189
See [Section 4.4](./README.md#44-configuration).
190190

191-
Instance variables:
191+
Instance variables:
192+
192193
The `Initiator` maintains instance variables which may be used to measure its
193194
peformance. See [Section 4.4](./README.md#44-configuration).
194195

0 commit comments

Comments
 (0)