bk1285 / rpi_wordclock

Software to create a Raspberry Pi based wordclock
GNU General Public License v3.0
214 stars 107 forks source link

Suggestion - Second plugin #203

Closed R0lleston closed 3 years ago

R0lleston commented 3 years ago

Is there a way to disable the fading effect when the numbers tick over, as it gives the illusion that the seconds are counting faster than they are. Would be much nicer to have a straight on and off (like a digital watch) or an option for fading or on /off

phenze commented 3 years ago

Just comment out the next two lines under the comment "previous seconds, dimming down" in time_in_seconds/plugin.py

# previous seconds, dimming down
# taw_indices = self.taw.get_time(currentSecond - 1 if currentSecond != 0 else 59)
# wcd.setColorBy1DCoordinates(taw_indices, wcc.Color(i, i, i))
R0lleston commented 3 years ago

@phenze thank you, worked perfectly :)