Open GoogleCodeExporter opened 9 years ago
I think you are getting close to the time which is required for redraw. Calling
checkKey() more often might help, but in principle, m2tk does not handle keys
during redraw.
void loop() {
m2.checkKey();
m2.checkKey();
if ( m2.handleKey() ) {
u8g.firstPage();
do {
m2.checkKey();
draw();
} while( u8g.nextPage() );
}
}
Original comment by olikr...@gmail.com
on 10 Jul 2014 at 4:12
Original issue reported on code.google.com by
will...@curitiba.org
on 10 Jul 2014 at 12:02