M5GFX documentation correct for AtomS3R?
-
It seems the official documentation (the Arduino Guide linked to the web page of the AtomS3R) is not correct. Am I doing something wrong or is this documentation wrong? It says:
drawChar
Draw an unicode character.Syntax:
size_t drawChar(uint16_t uniCode, int32_t, x, int32_t y, uint8_t font)
But this doesn't compile. It should be something like: drawChar( x, y, char, color, color, zoom, zoom) (which seems to work fine)
-
@ploegmma
This function is not wrong, it is just overloaded multiple times
The parameters I typed randomly can compile successfully.
StickCP2.Display.drawChar('s', 0, 0, 2);