You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • I don't really understand the question... https://www.espruino.com/Fonts might help a little

    This has been covered a few times on the forum but Espruino only supports strings/fonts for 256 characters, since they are based on bytes. We can't really support all of UTF8 anyway because the font would end up being huge and basically using up all the storage on the system.

    You can use decodeUTF8 (http://www.espruino.com/Reference#l_E_de­codeUTF8) to 'patch' up specific UTF8 characters with a bitmap for that character (just add '0' infront of the bitmap string like in http://www.espruino.com/Reference#l_Grap­hics_drawString)

    But... we don't send UTF8 from Gadgetbridge, we just send simple 8 bit strings. iOS does send UTF8 because we have no control of it so it works there.

About

Avatar for Gordon @Gordon started