This commit is contained in:
kraus 2023-06-04 01:02:21 +02:00
parent fe36d90a0f
commit 66da29dfb9
1 changed files with 2 additions and 3 deletions

View File

@ -147,9 +147,8 @@ Conclusion:
Q: Data is written only to the first 8 lines of the display. Why?
A: U8g2 page mode constructor ("1" mode, see previous question) is used
along with the "sendBuffer" command. This is a mistake and will not work.
Solutions:
1. Change the constructor to full buffer mode: Replace "_1_" by "_F_"
2. Replace "sendBuffer" with the firstPage/nextPage loop
Solutions 1: Change the constructor to full buffer mode: Replace "_1_" by "_F_"
Or solution 2: Replace "sendBuffer" with the firstPage/nextPage loop
See also: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp#constructor-name
Q: What is the meaning of "SW"/"HW" in the U8g2 constructor name?