Skip to content

Commit

Permalink
Remove display.clear() from setup() #29
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Feb 20, 2023
1 parent 3af50e3 commit 0632c9b
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion examples/ATtiny85/ATtiny85.ino
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ const PROGMEM char FlashString2[] = "good";

void setup() {
display.begin();
display.clear();
display.setBrightness(BRIGHT_7);
}

Expand Down
1 change: 0 additions & 1 deletion examples/TM1637-6Digit-Test/TM1637-6Digit-Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ TM1637TinyDisplay6 display(CLK, DIO);
void setup()
{
display.begin();
display.clear();
display.setBrightness(BRIGHT_HIGH);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ int Sec = 0;
void setup()
{
display.begin();
display.clear();
display.setBrightness(BRIGHT_HIGH);

pinMode(BUTTON_UP, INPUT_PULLUP);
Expand Down
1 change: 0 additions & 1 deletion examples/TM1637-Countdown/TM1637-Countdown.ino
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ unsigned long countDown;
void setup()
{
display.begin();
display.clear();
display.setBrightness(BRIGHT_HIGH);

// Record Epoch - Same as Timer Reset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ void setup()
{
Serial.begin(9600);
display.begin();
display.clear();
display.setBrightness(BRIGHT_HIGH);
AnimationNum = 0;
}
Expand Down
1 change: 0 additions & 1 deletion examples/TM1637Demo/TM1637Demo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ const uint8_t ANIMATION3[218][4] PROGMEM = {

void setup() {
display.begin();
display.clear();
display.setBrightness(BRIGHT_7);
display.showNumber(1234);
delay(1000);
Expand Down
1 change: 0 additions & 1 deletion examples/TM1637Test/TM1637Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ TM1637TinyDisplay display(CLK, DIO);
void setup()
{
display.begin();
display.clear();
}

void loop()
Expand Down

0 comments on commit 0632c9b

Please sign in to comment.