Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
phd0 authored Feb 6, 2024
1 parent 63f8899 commit 721dd79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Adafruit_LEDBackpack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ void Adafruit_BicolorMatrix::drawPixel(int16_t x, int16_t y, uint16_t color) {

Adafruit_7segment::Adafruit_7segment(void) { position = 0; }

void Adafruit_7segment::print(const String& c) { write(c.c_str(), c.length()); }
void Adafruit_7segment::print(const String &c) { write(c.c_str(), c.length()); }

void Adafruit_7segment::print(const char c[]) { write(c, strlen(c)); }

Expand All @@ -665,7 +665,7 @@ void Adafruit_7segment::print(unsigned int n, int base) {

void Adafruit_7segment::println(void) { position = 0; }

void Adafruit_7segment::println(const String& c) {
void Adafruit_7segment::println(const String &c) {
print(c);
println();
}
Expand Down Expand Up @@ -732,7 +732,7 @@ size_t Adafruit_7segment::write(char c) {
return r;
}

size_t Adafruit_7segment::write(const char* buffer, size_t size) {
size_t Adafruit_7segment::write(const char *buffer, size_t size) {
size_t n = 0;

while (n < size) {
Expand Down

0 comments on commit 721dd79

Please sign in to comment.