File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
TM1637-6Digit-NonBlockingAnimate
TM1637-NonBlockingAnimate Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -161,12 +161,14 @@ void loop()
161
161
Serial.println (" Animated Short String Scroll from SRAM" );
162
162
// non-blocking scrolling of a short string
163
163
display.startStringScroll (" S-Test" , 200 );
164
+ delay (TEST_DELAY);
164
165
break ;
165
166
case 6 :
166
167
Serial.println (" " );
167
168
Serial.println (" Animated Short String Scroll from PROGMEM" );
168
169
// non-blocking scrolling of a short string
169
- display.startStringScroll_P (" P-Test" , 200 );
170
+ display.startStringScroll_P (" F-Test" , 200 );
171
+ delay (TEST_DELAY);
170
172
break ;
171
173
default :
172
174
display.showString (" The" );
Original file line number Diff line number Diff line change @@ -171,13 +171,15 @@ void loop()
171
171
Serial.println (" " );
172
172
Serial.println (" Animated Short String Scroll from SRAM" );
173
173
// non-blocking scrolling of a short string
174
- display.startStringScroll (" STAT" , 200 );
174
+ display.startStringScroll (" SRAM" , 200 );
175
+ delay (TEST_DELAY);
175
176
break ;
176
177
case 6 :
177
178
Serial.println (" " );
178
179
Serial.println (" Animated Short String Scroll from PROGMEM" );
179
180
// non-blocking scrolling of a short string
180
- display.startStringScroll_P (" PROG" , 200 );
181
+ display.startStringScroll_P (" FLAS" , 200 );
182
+ delay (TEST_DELAY);
181
183
break ;
182
184
default :
183
185
display.showString (" The" );
You can’t perform that action at this time.
0 commit comments