From a31642df89dee159c1067422399c4cf6bdc3f9ce Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 25 Jan 2024 08:03:44 +0000 Subject: [PATCH 1/2] Add Qwiic OLED 1.3in --- README.md | 5 ++++- examples/Example-01_Hello/Example-01_Hello.ino | 1 + examples/Example-02_Shapes/Example-02_Shapes.ino | 1 + examples/Example-03_Bitmap/Example-03_Bitmap.ino | 1 + examples/Example-04_Text/Example-04_Text.ino | 1 + examples/Example-05_ScrollFlip/Example-05_ScrollFlip.ino | 1 + examples/Example-06_Clock/Example-06_Clock.ino | 1 + examples/Example-07_Cube/Example-07_Cube.ino | 1 + examples/Example-08_Multi/Example-08_Multi.ino | 1 + examples/Example-09_CustomOLED/Example-09_CustomOLED.ino | 1 + library.properties | 2 +- 11 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75462b3..936942e 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,14 @@ + SparkFun Micro OLED Breakout (Qwiic) (LCD-14532) SparkFun Qwiic OLED Display (0.91 in, 128x32) (LCD-17153) SparkFun Transparent Graphical OLED Breakout (Qwiic) (LCD-15173) smôl OLED Display (0.91 in, 128x32) (SPX-18996) + SparkFun Qwiic OLED - (1.3in., 128x64) (LCD-23453) @@ -61,7 +63,8 @@ Above, the OLED on the right is running the original Micro OLED library at 75fps * [LCD-14532](https://www.sparkfun.com/products/14532) - SparkFun Micro OLED Breakout (Qwiic) * [LCD-17153](https://www.sparkfun.com/products/17153) - SparkFun Qwiic OLED Display (0.91 in, 128x32) * [LCD-15173](https://www.sparkfun.com/products/15173) - SparkFun Transparent Graphical OLED Breakout (Qwiic) -* [SPX-18996](https://www.sparkfun.com/products/18996) - smôl OLED Display (0.91 in, 128x32) +* [SPX-18996](https://www.sparkfun.com/products/18996) - smôl OLED Display (0.91 in, 128x32) +* [LCD-23453](https://www.sparkfun.com/products/23453) - SparkFun Qwiic OLED (1.3in., 128x64) ### Supported Microcontrollers - Arduino Environment diff --git a/examples/Example-01_Hello/Example-01_Hello.ino b/examples/Example-01_Hello/Example-01_Hello.ino index 29a39a4..2960c38 100644 --- a/examples/Example-01_Hello/Example-01_Hello.ino +++ b/examples/Example-01_Hello/Example-01_Hello.ino @@ -8,6 +8,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/examples/Example-02_Shapes/Example-02_Shapes.ino b/examples/Example-02_Shapes/Example-02_Shapes.ino index 475e9ab..eeeed90 100644 --- a/examples/Example-02_Shapes/Example-02_Shapes.ino +++ b/examples/Example-02_Shapes/Example-02_Shapes.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/examples/Example-03_Bitmap/Example-03_Bitmap.ino b/examples/Example-03_Bitmap/Example-03_Bitmap.ino index 19d1b87..5d7cfda 100644 --- a/examples/Example-03_Bitmap/Example-03_Bitmap.ino +++ b/examples/Example-03_Bitmap/Example-03_Bitmap.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/examples/Example-04_Text/Example-04_Text.ino b/examples/Example-04_Text/Example-04_Text.ino index 3ad0c26..8818ee0 100644 --- a/examples/Example-04_Text/Example-04_Text.ino +++ b/examples/Example-04_Text/Example-04_Text.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/examples/Example-05_ScrollFlip/Example-05_ScrollFlip.ino b/examples/Example-05_ScrollFlip/Example-05_ScrollFlip.ino index 69d5b98..3016c0b 100644 --- a/examples/Example-05_ScrollFlip/Example-05_ScrollFlip.ino +++ b/examples/Example-05_ScrollFlip/Example-05_ScrollFlip.ino @@ -15,6 +15,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/examples/Example-06_Clock/Example-06_Clock.ino b/examples/Example-06_Clock/Example-06_Clock.ino index 5dba797..a818ed6 100644 --- a/examples/Example-06_Clock/Example-06_Clock.ino +++ b/examples/Example-06_Clock/Example-06_Clock.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Jim Lindblom @ SparkFun Electronics diff --git a/examples/Example-07_Cube/Example-07_Cube.ino b/examples/Example-07_Cube/Example-07_Cube.ino index 339cdd3..a28ecc5 100644 --- a/examples/Example-07_Cube/Example-07_Cube.ino +++ b/examples/Example-07_Cube/Example-07_Cube.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Jim Lindblom @ SparkFun Electronics diff --git a/examples/Example-08_Multi/Example-08_Multi.ino b/examples/Example-08_Multi/Example-08_Multi.ino index ffe69b5..a971622 100644 --- a/examples/Example-08_Multi/Example-08_Multi.ino +++ b/examples/Example-08_Multi/Example-08_Multi.ino @@ -13,6 +13,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Updated from example writtin by Paul Clark @ SparkFun Electronics Original Creation Date: December 11th, 2020 diff --git a/examples/Example-09_CustomOLED/Example-09_CustomOLED.ino b/examples/Example-09_CustomOLED/Example-09_CustomOLED.ino index c101586..a21c533 100644 --- a/examples/Example-09_CustomOLED/Example-09_CustomOLED.ino +++ b/examples/Example-09_CustomOLED/Example-09_CustomOLED.ino @@ -8,6 +8,7 @@ Micro OLED https://www.sparkfun.com/products/14532 Transparent OLED https://www.sparkfun.com/products/15173 "Narrow" OLED https://www.sparkfun.com/products/17153 + Qwiic OLED 1.3in https://www.sparkfun.com/products/23453 Written by Kirk Benell @ SparkFun Electronics, March 2022 diff --git a/library.properties b/library.properties index a9e7621..1e21262 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SparkFun Qwiic OLED Arduino Library -version=1.0.9 +version=1.0.10 author=SparkFun Electronics maintainer=SparkFun Electronics sentence=Library for SparkFun SSD1306 based OLED display products. From be6968b73b3fc366d4d77ec542f520ed97540fcf Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 25 Jan 2024 08:19:44 +0000 Subject: [PATCH 2/2] More 1in3 docs --- docs/hug_1in3.md | 3 +++ docs/index.md | 7 +++++++ mkdocs.yml | 1 + 3 files changed, 11 insertions(+) create mode 100644 docs/hug_1in3.md diff --git a/docs/hug_1in3.md b/docs/hug_1in3.md new file mode 100644 index 0000000..0d4e324 --- /dev/null +++ b/docs/hug_1in3.md @@ -0,0 +1,3 @@ +# Qwiic OLED 1.3in Setup + +The Qwiic OLED 1.3in has its own [hook-up guide](https://docs.sparkfun.com/SparkFun_Qwiic_OLED_1.3in/). diff --git a/docs/index.md b/docs/index.md index b856bd0..fc74b1f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -48,6 +48,13 @@ The SparkFun Qwiic OLED Arduino Library supports the following SparFun Products SparkFun Transparent Graphical OLED Breakout (Qwiic) + + + + + SparkFun Qwiic OLED (1.3in., 128x64) + + diff --git a/mkdocs.yml b/mkdocs.yml index f892896..64d96d2 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -78,6 +78,7 @@ nav: - Software Setup: software.md - hug_micro_view.md - hug_transparent.md + - hug_1in3.md - API Reference: - Device: api_device.md - Scrolling: api_scroll.md