v.0.0.3 LedMatrix::drawChar

This commit is contained in:
tiijay
2025-11-04 11:29:09 +01:00
parent d138cb9763
commit ef341ea7ea
4 changed files with 27 additions and 39 deletions

View File

@@ -25,12 +25,11 @@ public:
~LedMatrix();
void drawPixel(int x, int y, CRGB color);
void drawChar(int x, int y, char c, CRGB color);
void _drawChar_(int x, int y, char c, CRGB color);
uint8_t drawChar(int x, int y, char c, CRGB color);
// Draw text string
void drawText(int x, int y, const char *text, CRGB color);
vector<uint8_t> number_to_bitarray_msb(uint16_t number, int bits = 8);
vector<uint8_t> number_to_bitarray_msb(uint16_t number, int bits = 8, boolean four_bits = false);
};
#endif