Skip to content

Commit 1e6f3a3

Browse files
committed
Updating the library.properties
1 parent 714b703 commit 1e6f3a3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ MicroOLED oled(PIN_RESET); // The TwoWire I2C port is passed to .begin instead
6969

7070
followed by:
7171
```
72-
oled.begin(0x3C, Wire); // Initialize the OLED using address 0x3C and the Wire port
72+
oled.begin(0x3D, Wire); // Initialize the OLED using address 0x3D and the Wire port
7373
```
7474

7575
To use a non-standard address or port, you can call:
7676
```
77-
oled.begin(0x3D, Qwiic); // Initialize the OLED using address 0x3D and the Qwiic port
77+
oled.begin(0x3C, Qwiic); // Initialize the OLED using address 0x3C and the Qwiic port
7878
```
7979

8080
### SPI Example
@@ -97,6 +97,7 @@ To use a non-standard port, call:
9797
Version History
9898
---------------
9999

100+
* [v 1.3.0](https://github.com/sparkfun/SparkFun_Micro_OLED_Arduino_Library/releases/tag/v1.3.0) - adding support for non-standard I<sup>2</sup>C and SPI ports
100101
* [v 1.2.10](https://github.com/sparkfun/SparkFun_Micro_OLED_Arduino_Library/releases/tag/v1.2.10) - prevent-write-outside-buffer corrections; improved I2C transfer speeds; includes the missing scroll functions; ```line``` corrections; ```enableDebugging```.
101102
* [v 1.2.9](https://github.com/sparkfun/SparkFun_Micro_OLED_Arduino_Library/releases/tag/v1.2.9) - drawIcon() correction
102103
* [v 1.2.8](https://github.com/sparkfun/SparkFun_Micro_OLED_Arduino_Library/releases/tag/v1%2C2.8) - Add drawIcon() and resort examples with Qwiic as default.

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=SparkFun Micro OLED Breakout
2-
version=1.2.10
2+
version=1.3.0
33
author=SparkFun Electronics <techsupport@sparkfun.com>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for the <a href="https://www.sparkfun.com/products/13003">SparkFun Micro OLED Breakout</a>.
6-
paragraph=Library for the Micro OLED Breakout, a monochrome, 0.66", 64x48 OLED display. Several basic functionlity examples included.
6+
paragraph=Library for the Micro OLED Breakout, a monochrome, 0.66", 64x48 OLED display. Several basic functionlity examples included.
77
category=Display
88
url=https://github.com/sparkfun/SparkFun_Micro_OLED_Arduino_Library
99
architectures=*

0 commit comments

Comments
 (0)