rjbatista / tm1638-library

Automatically exported from code.google.com/p/tm1638-library
141 stars 75 forks source link

Issue on calling setDisplayDigit repeatedly with the Dot set to true #22

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I've noticed the following issue on a TM1640 display.

Calling setDisplayDigit repeatedly in a loop, with the dot set to true, shows a 
weird half number on the spot adjacent to it. In the sample code bellow, the 
second 7-segment display will show a small inverted "r".

 for (int i=0; i<=9; i++)
 {
  module.setDisplayDigit(i,0,true);
  delay(500);
 }

If the dot parameter is set to false, it works correctly. It also works 
correctly when the function is called just once.

Original issue reported on code.google.com by longi...@gmail.com on 24 Mar 2012 at 7:27

GoogleCodeExporter commented 8 years ago
Corrected.

Will be available on the next version and I'm REALLY sorry it took this long.

Original comment by rjbati...@gmail.com on 11 Jun 2012 at 9:17