U8glib_Arduino icon indicating copy to clipboard operation
U8glib_Arduino copied to clipboard

Chess example notation

Open homofortis opened this issue 7 years ago • 0 comments

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';

homofortis avatar Apr 30 '17 14:04 homofortis