olikraus / U8glib_Arduino

U8glib library for Arduino
Other
161 stars 84 forks source link

Chess example notation #17

Open homofortis opened 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';