Skip to content

Commit adfccc1

Browse files
committed
Adding links to the examples
1 parent 18b3853 commit adfccc1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ To use a non-standard address or port, you can call:
7777
oled.begin(0x3C, Qwiic); // Initialize the OLED using address 0x3C and the Qwiic port
7878
```
7979

80+
Please see [this example](./examples/Example10_MultiDemo_v13/Example10_MultiDemo_v13.ino) for more details.
81+
8082
### SPI Example
8183

8284
For SPI in v1.3, you still need to instantiate the oled using:
@@ -94,6 +96,8 @@ To use a non-standard port, call:
9496
oled.begin(SPI1); // Initialize the OLED using SPI1
9597
```
9698

99+
Please see [this example](./examples/SPI/MicroOLED_Demo_v13/MicroOLED_Demo_v13.ino) for more details.
100+
97101
Version History
98102
---------------
99103

examples/SPI/MicroOLED_Demo_v13/MicroOLED_Demo_v13.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ void setup()
5858
*/
5959

6060
// This is the new way of initializing the OLED.
61-
// We can use a different SPIClass is we want to
61+
// We can use a different SPIClass if we want to
6262
oled.begin(SPI1); // Initialize the OLED using SPI1
6363

64-
64+
6565
oled.clear(ALL); // Clear the display's internal memory
6666
oled.display(); // Display what's in the buffer (splashscreen)
6767
delay(1000); // Delay 1000 ms

0 commit comments

Comments
 (0)