////////////////////////////////////// REPEAT
| 101 | // REPEAT |
| 102 | // |
| 103 | void LineFormatter::repeat(uint8_t n, char c, uint8_t newLine) |
| 104 | { |
| 105 | while (n--) print(c); |
| 106 | while (newLine--) write('\n'); |
| 107 | } |
| 108 | |
| 109 | |
| 110 | void LineFormatter::repeat(uint8_t n, const char* str, uint8_t newLine) |