Some (unsuccessfull) encoder tests

This commit is contained in:
Oleksiy
2025-05-04 23:01:40 +03:00
parent 55bf5035fc
commit 663b723ddb
6 changed files with 304 additions and 0 deletions

View File

@ -0,0 +1,13 @@
void updateScreen() {
u8g2.firstPage();
do {
String valueStr;
u8g2.setDrawColor(1);
valueStr = String(counter);
u8g2.setFont(u8g2_font_ncenB14_tr);
u8g2.drawStr(0,15,valueStr.c_str());
} while ( u8g2.nextPage() );
}