Skip to content

Commit 44a5992

Browse files
authored
Merge pull request #2879 from adafruit/ci_bandaids
adding test onlys as workarounds
2 parents cc9d8c1 + c181cb2 commit 44a5992

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ void make_triangle(uint16_t x1, uint16_t y1, uint16_t side_1, uint16_t side_2,ui
681681
}
682682

683683
int analog_map(int x, int minMap, int maxMap) {
684-
int z = analogRead(x);
684+
long unsigned int z = analogRead(x);
685685
z = map(z, 0, 1023, minMap, maxMap);
686686
return z;
687687
}
@@ -726,7 +726,7 @@ void draw_gradient(int x, int y, int w, int h) {
726726
}
727727
}
728728

729-
void millisDelay(int delayTime){
730-
int start_time = millis();
729+
void millisDelay(long unsigned int delayTime){
730+
long unsigned int start_time = millis();
731731
while ( millis() - start_time < delayTime) ;
732732
}

IoT_Button_BFF_Examples/adafruitIO_iotButtonNeoPixelBFF/.none.test.only

Whitespace-only changes.

0 commit comments

Comments
 (0)