Skip to content

Commit 6b219ac

Browse files
authored
Fixed typos
1 parent 353a9f3 commit 6b219ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ The library supports different protocols to access the OLED display. Currently t
6161

6262
SSD1306 display(ADDRESS, SDA, SDC);
6363
```
64-
or for a SSH1106:
64+
or for a SH1106:
6565
```C++
6666
#include <Wire.h>
67-
#include "SSH1106.h"
67+
#include "SH1106.h"
6868
69-
SSH1106 display(ADDRESS, SDA, SDC);
69+
SH1106 display(ADDRESS, SDA, SDC);
7070
```
7171

7272
### I2C with brzo_i2c
@@ -77,12 +77,12 @@ SSH1106 display(ADDRESS, SDA, SDC);
7777

7878
SSD1306Brzo display(ADDRESS, SDA, SDC);
7979
```
80-
or for the SSH1106:
80+
or for the SH1106:
8181
```C++
8282
#include <brzo_i2c.h>
83-
#include "SSH1106Brzo.h"
83+
#include "SH1106Brzo.h"
8484
85-
SSH1106Brzo display(ADDRESS, SDA, SDC);
85+
SH1106Brzo display(ADDRESS, SDA, SDC);
8686
```
8787

8888
### SPI

0 commit comments

Comments
 (0)