You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Great job on this tool. Thank you for providing it. Unfortunately the byte order is incorrect for every graphic LCD I have ever used. I got the correct byte order by changing line 99 in app.js to the following: buffer[ (y % 8) + (Math.floor(y / 8) * 8 * width) + (x * 8) ] = temp
and using column major.
This mapping is used on UC1701, PCD8544 (nokia 3310) and SSD1306.
The text was updated successfully, but these errors were encountered:
XYandZ
added a commit
to XYandZ/dotmatrixtool
that referenced
this issue
Oct 12, 2022
Hi, Great job on this tool. Thank you for providing it. Unfortunately the byte order is incorrect for every graphic LCD I have ever used. I got the correct byte order by changing line 99 in app.js to the following:
buffer[ (y % 8) + (Math.floor(y / 8) * 8 * width) + (x * 8) ] = temp
and using column major.
This mapping is used on UC1701, PCD8544 (nokia 3310) and SSD1306.
The text was updated successfully, but these errors were encountered: