2.34.22
This commit is contained in:
parent
b67e3fe1e7
commit
d8d99462b3
|
@ -298,7 +298,7 @@ https://github.com/olikraus/u8g2 ChangeLog
|
|||
* Experimental support for ST75160, TESTING REQUIRED (issue 1642)
|
||||
* Bugfix font compression: Reduced fontsize by up to 4% (issue 1941)
|
||||
* Changed SPI mode for SH1106 from 3 to 0 (issue 1901)
|
||||
2023-06-18 v2.34.21 olikraus@gmail.com
|
||||
2023-06-18 v2.34.22 olikraus@gmail.com
|
||||
* SSD1327 ZJY M150 128x128 (issue 1960)
|
||||
* SSD1316 96x32 (issue 1938)
|
||||
* SSD1322 240x128 (issue 2092)
|
||||
|
@ -321,4 +321,5 @@ https://github.com/olikraus/u8g2 ChangeLog
|
|||
* Added MUI fixed width bar graph (issue 2200)
|
||||
* Added 04b fonts from u8glib (issue 2157)
|
||||
* Added "font_tiny5" (issue 2185)
|
||||
* Added MUI (https://github.com/olikraus/u8g2/wiki/muimanual) examples (issue 1747)
|
||||
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
MUIBlink.ino
|
||||
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
This demo will blink the builtin LED with a certain brightness and duty.
|
||||
The demo will use several different input methods/fields to enter the data.
|
||||
|
||||
This may not always work as expected:
|
||||
- The builtin LED may not be supported by analogWrite, so the brightness
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
MUICountDown.ino
|
||||
|
||||
https://github.com/olikraus/u8g2/wiki/muimanual#muicountdown-example
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
||||
Copyright (c) 2021, olikraus@gmail.com
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
MUIInput2BtnBounce2.ino
|
||||
|
||||
U8g2 Menu with Bounce2 Library (https://github.com/thomasfredericks/Bounce2).
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
U8g2 Menu (MUI) with Bounce2 Library (https://github.com/thomasfredericks/Bounce2).
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MUIInput3BtnBounce2.ino
|
||||
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
U8g2 Menu with Bounce2 Library (https://github.com/thomasfredericks/Bounce2).
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MUIInput3BtnWithU8g2.ino
|
||||
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
Menu with three buttons. Internal U8g2 button control.
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MUIInputSimpleRotary.ino
|
||||
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
U8g2 Menu with Rotary Encoder (SimpleRotary library).
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MUIInputVersatileRotaryEncoder.ino
|
||||
|
||||
MUI: https://github.com/olikraus/u8g2/wiki/muimanual
|
||||
U8g2 Menu with Rotary Encoder (Versatile_RotaryEncoder library).
|
||||
Short Button Press: Switch between field movement and data increment/decrement
|
||||
Long Button Press: Return to main menu
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
MUIMinimal.ino
|
||||
|
||||
A really small example for MUI
|
||||
A really small example for MUI (https://github.com/olikraus/u8g2/wiki/muimanual)
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
/*
|
||||
|
||||
MUIStopwatch.ino
|
||||
|
||||
https://github.com/olikraus/u8g2/wiki/muimanual#stopwatch-example
|
||||
|
||||
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
||||
|
||||
|
|
|
@ -122,6 +122,34 @@ cp ../../../sys/arduino/u8g2_page_buffer/LoadFromSD/*.ino ../../../../U8g2_Ardui
|
|||
mkdir ../../../../U8g2_Arduino/examples/page_buffer/ButtonEmoticon
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/ButtonEmoticon/*.ino ../../../../U8g2_Arduino/examples/page_buffer/ButtonEmoticon/.
|
||||
|
||||
# mui
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIBlink
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIBlink/*.ino ../../../../U8g2_Arduino/examples/mui/MUIBlink/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIMinimal
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIMinimal/*.ino ../../../../U8g2_Arduino/examples/mui/MUIMinimal/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIInput2BtnBounce2
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIInput2BtnBounce2/*.ino ../../../../U8g2_Arduino/examples/mui/MUIInput2BtnBounce2/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIInput3BtnBounce2
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIInput3BtnBounce2/*.ino ../../../../U8g2_Arduino/examples/mui/MUIInput3BtnBounce2/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIInput3BtnWithU8g2
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIInput3BtnWithU8g2/*.ino ../../../../U8g2_Arduino/examples/mui/MUIInput3BtnWithU8g2/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIInputSimpleRotary
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIInputSimpleRotary/*.ino ../../../../U8g2_Arduino/examples/mui/MUIInputSimpleRotary/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIInputVersatileRotaryEncoder
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIInputVersatileRotaryEncoder/*.ino ../../../../U8g2_Arduino/examples/mui/MUIInputVersatileRotaryEncoder/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUIStopwatch
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUIStopwatch/*.ino ../../../../U8g2_Arduino/examples/mui/MUIStopwatch/.
|
||||
|
||||
mkdir ../../../../U8g2_Arduino/examples/mui/MUICountDown
|
||||
cp ../../../sys/arduino/u8g2_page_buffer/MUICountDown/*.ino ../../../../U8g2_Arduino/examples/mui/MUICountDown/.
|
||||
|
||||
# games
|
||||
mkdir ../../../../U8g2_Arduino/examples/games/LittleRookChess
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# without 'v' prefix
|
||||
echo -n "2.34.21"
|
||||
echo -n "2.34.22"
|
||||
|
|
Loading…
Reference in New Issue