Skip to content

Commit 51a179b

Browse files
Update comments
1 parent 5b97070 commit 51a179b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Neo7Segment.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ void Neo7Segment::DisplayTextMarquee( String text, uint8_t index, uint32_t color
523523
}
524524
}
525525
}
526+
526527
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
527528
pixels.show();
528529
}
@@ -565,6 +566,7 @@ void Neo7Segment::DisplayTextChaser( String text, uint8_t index, uint32_t color
565566
}
566567
}
567568
}
569+
568570
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
569571
pixels.show();
570572
}
@@ -647,6 +649,7 @@ void Neo7Segment::DisplayTextColor( String text, uint32_t color )
647649
}
648650
}
649651
}
652+
650653
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
651654
pixels.show();
652655
}
@@ -683,6 +686,7 @@ void Neo7Segment::DisplayTextDigitColor( String text, uint32_t color[] )
683686
}
684687
}
685688
}
689+
686690
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
687691
pixels.show();
688692
}
@@ -812,6 +816,7 @@ void Neo7Segment::DisplayKnightRider( uint8_t index, uint32_t color )
812816
pixels.setPixelColor( segmentsPixels[ 7 ][ p ] + ( s * NUM_PIXELS_PER_BOARD ), Color(0,0,0) );
813817
}
814818
}
819+
815820
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
816821
pixels.show();
817822
}
@@ -949,6 +954,7 @@ void Neo7Segment::SetDigit( uint8_t digit, String text, uint32_t color )
949954
}
950955
}
951956

957+
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
952958
pixels.show();
953959
}
954960

@@ -974,6 +980,7 @@ void Neo7Segment::SetDigitSegments( uint8_t digit, byte bits, uint32_t color )
974980
pixels.setPixelColor( segmentsPixels[ 7 ][ p ] + ( digit * NUM_PIXELS_PER_BOARD ), on ? color : Color(0,0,0) );
975981
}
976982

983+
// we have finished setting all of the colors on each segment for this Neo7Segment, so lets turn on the pixels
977984
pixels.show();
978985
}
979986

0 commit comments

Comments
 (0)