mirror of
https://github.com/olikraus/U8g2_Arduino.git
synced 2026-07-27 20:06:05 +00:00
2.33.11
This commit is contained in:
@@ -8,5 +8,5 @@ Description: https://github.com/olikraus/u8g2/wiki
|
||||
|
||||
Issue Tracker: https://github.com/olikraus/u8g2/issues
|
||||
|
||||
Download (2.33.10): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
|
||||
Download (2.33.11): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
|
||||
|
||||
|
||||
@@ -288,5 +288,9 @@ https://github.com/olikraus/u8g2 ChangeLog
|
||||
2022-xx-xx v2.33.x olikraus@gmail.com
|
||||
* ST7567 ERC13232 (issue 1869)
|
||||
* ST7920 160x32 (issue 1873)
|
||||
* ST7586 JLX384160 (issue 1932)
|
||||
* LC7981 128X128, NOT TESTED (issue 1913)
|
||||
* Added support for IST3088 (issue 1887)
|
||||
* Added support for GP1287AI (issue 1907)
|
||||
* Double size font functions: drawGlyphX2, drawStrX2, drawUTF8X2 (issue 1919)
|
||||
* Experimental support for ST75160, TESTING REQUIRED (issue 1642)
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
name=U8g2
|
||||
version=2.33.10
|
||||
version=2.33.11
|
||||
author=oliver <olikraus@gmail.com>
|
||||
maintainer=oliver <olikraus@gmail.com>
|
||||
sentence=Monochrome LCD, OLED and eInk Library. Display controller: SSD1305, SSD1306, SSD1309, SSD1312, SSD1316, SSD1320, SSD1322, SSD1325, SSD1327, SSD1329, SSD1606, SSD1607, SH1106, SH1107, SH1108, SH1122, T6963, RA8835, LC7981, PCD8544, PCF8812, HX1230, UC1601, UC1604, UC1608, UC1610, UC1611, UC1617, UC1638, UC1701, ST7511, ST7528, ST7565, ST7567, ST7571, ST7586, ST7588, ST75256, ST75320, NT7534, ST7920, IST3020, IST7920, LD7032, KS0108, KS0713, HD44102, T7932, SED1520, SBN1661, IL3820, MAX7219. Interfaces: I2C, SPI, Parallel.
|
||||
|
||||
@@ -31,7 +31,10 @@
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
https://github.com/olikraus/u8g2/issues/1642
|
||||
REQUESTED IN
|
||||
https://github.com/olikraus/u8g2/issues/1642
|
||||
|
||||
STATUS 13 Aug 2022: NOT TESTED, MAY NOT WORK..
|
||||
|
||||
|
||||
0x030 ext 00
|
||||
|
||||
@@ -243,6 +243,7 @@ static const uint8_t u8x8_d_st7528_nhd_c160100_init_seq[] = {
|
||||
U8X8_C(0x0a0), /* ADC */
|
||||
U8X8_C(0x0c8), /* SHL */
|
||||
U8X8_CA(0x044, 0x000), /* initial Com0 */
|
||||
U8X8_CA(0x040, 0x000), /* y shift, issue https://github.com/olikraus/u8g2/issues/1828 */
|
||||
U8X8_C(0x0ab), /* start oscillator */
|
||||
U8X8_C(0x026), /* Select the internal resistance ratio of the regulator resistor */
|
||||
U8X8_CA(0x081, 0x015), /* volumn */
|
||||
@@ -262,8 +263,6 @@ static const uint8_t u8x8_d_st7528_nhd_c160100_init_seq[] = {
|
||||
U8X8_END() /* end of sequence */
|
||||
};
|
||||
|
||||
|
||||
|
||||
static const u8x8_display_info_t u8x8_st7528_160x100_display_info =
|
||||
{
|
||||
/* chip_enable_level = */ 0,
|
||||
|
||||
@@ -170,7 +170,7 @@ static const uint8_t u8x8_d_st7586s_jlx384160_init_seq[] = {
|
||||
U8X8_A(0x000), // COM0 -> COM159 SEG0 -> SEG384
|
||||
|
||||
U8X8_C(0x0B0), // Duty Setting (num rows - 1)
|
||||
U8X8_A(0x087), // should be 0x87 but caused flicker 0x9F
|
||||
U8X8_A(0x09f), // 160-1
|
||||
|
||||
U8X8_C(0x020), // Display inversion off
|
||||
|
||||
|
||||
@@ -102,7 +102,7 @@ static uint8_t u8x8_find_first_diff(uint8_t a, uint8_t b)
|
||||
|
||||
*/
|
||||
|
||||
#ifdef __unix__xxxxxx_THIS_IS_DISABLED
|
||||
#ifndef __unix__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
Reference in New Issue
Block a user