| 103 | } |
| 104 | |
| 105 | void NeoMatrixDisplay::drawTextLine(int16_t x, int16_t y, const String &text, uint16_t color) |
| 106 | { |
| 107 | _matrix->setCursor(x, y); |
| 108 | _matrix->setTextColor(color); |
| 109 | for (size_t i = 0; i < (size_t)text.length(); ++i) |
| 110 | { |
| 111 | _matrix->write(text[i]); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | String NeoMatrixDisplay::truncateToColumns(const String &text, int maxColumns) |
| 116 | { |
nothing calls this directly
no outgoing calls
no test coverage detected