Skip to content

Commit a7b5051

Browse files
committed
2.21.8
1 parent 5803e85 commit a7b5051

File tree

45 files changed

+619
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+619
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ Description: https://github.com/olikraus/u8g2/wiki
88

99
Issue Tracker: https://github.com/olikraus/u8g2/issues
1010

11-
Download (2.21.7): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
11+
Download (2.21.8): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
1212

examples/full_buffer/FPS/FPS.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
// U8g2 Contructor List (Frame Buffer)
173173
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
174174
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
175+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
175176
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
176177
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
177178
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/FontUsage/FontUsage.ino

Lines changed: 435 additions & 0 deletions
Large diffs are not rendered by default.

examples/full_buffer/GraphicsTest/GraphicsTest.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
// U8g2 Contructor List (Frame Buffer)
5757
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
5858
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
59+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
5960
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6061
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6162
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/HelloWorld/HelloWorld.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
// U8g2 Contructor List (Frame Buffer)
5656
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
5757
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
58+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
5859
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
5960
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6061
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/PrintUTF8/PrintUTF8.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
// U8g2 Contructor List (Frame Buffer)
5959
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
6060
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
61+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
6162
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6263
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6364
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/SelectionList/SelectionList.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
// U8g2 Contructor List (Frame Buffer)
5656
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
5757
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
58+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
5859
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
5960
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6061
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/Shennong/Shennong.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
// U8g2 Contructor List (Frame Buffer)
100100
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
101101
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
102+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
102103
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
103104
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
104105
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/full_buffer/U8g2Logo/U8g2Logo.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
// U8g2 Contructor List (Frame Buffer)
5757
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
5858
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
59+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
5960
//U8G2_SSD1306_128X64_NONAME_F_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6061
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6162
//U8G2_SSD1306_128X64_NONAME_F_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

examples/page_buffer/Chinese/Chinese.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
// U8g2 Contructor List (Picture Loop Page Buffer)
5959
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
6060
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
61+
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
6162
//U8G2_SSD1306_128X64_NONAME_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6263
//U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
6364
//U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);

0 commit comments

Comments
 (0)