olikraus / u8glib

Arduino Monochrom Graphics Library for LCDs and OLEDs
https://github.com/olikraus/u8glib/wiki
Other
1.24k stars 313 forks source link

Chess example notation #462

Closed homofortis closed 7 years ago

homofortis commented 7 years ago

Hi, I really enjoyed your chess on my little OLED display :)) Great work!!! You just may want to rearrange the code In chessengine.c for cu_add_pos() to make it display moves correctly. s = pos; s &= 15; s += 'a'; s++; s = pos; s >>= 4; s += '1';