-
11Done! Now if you need just to adjust or fix something on display, just edit whatever in between the first "do-while" loop:
// ... u8g2_FirstPage(&u8g2); do { // put the necessary u8g2 functions to test what you want to see on the screen } while( u8g2_NextPage(&u8g2) ); // ...
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.
Are you sure? yes | no
Thanks! Very useful. In my case there were a few differences - Under windows 10 64 bit using SDL2-devel-2.0.22-mingw, I had to install the .a's and the DLL's from the i686-w64-mingw32/ subdir..
Also I was getting undefined reference to `u8x8_GetMenuEvent' until I went into u8x8_debounce.c and changed #ifdef __unix__xxxxxx_THIS_IS_DISABLED to #ifndef __unix__
Are you sure? yes | no