We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Your font has 3 lines with 0x00 is that why all chars look cropped on the top and bottom on a 128x32 OLED ? Board : NodeMCu ttgo
The text was updated successfully, but these errors were encountered:
Same here on a 128x64 OLED on an esp8266.
Sorry, something went wrong.
For an OLED that's 128x32, in OLED.cpp change sendcommand(0x12); //COMSCANDEC to sendcommand(0x02); //COMSCANDEC
sendcommand(0x12); //COMSCANDEC
sendcommand(0x02); //COMSCANDEC
also when you display.print you'll need to start on column 4 and end on column 7 display.print("top of display",4,0);
display.print("top of display",4,0);
No branches or pull requests
Your font has 3 lines with 0x00 is that why all chars look cropped on the top and bottom on a 128x32 OLED ?
Board : NodeMCu ttgo
The text was updated successfully, but these errors were encountered: