We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c9ffd7 commit 9ff733dCopy full SHA for 9ff733d
Adafruit_LEDBackpack/ex_7segment_clock.py
@@ -25,5 +25,5 @@
25
segment.writeDigit(4, minute % 10) # Ones
26
# Toggle colon
27
segment.setColon(second % 2) # Toggle colon at 1Hz
28
- # Wait one second
29
- time.sleep(1)
+ # Wait a quarter second (less than 1 second to prevent colon blinking getting in phase with odd/even seconds).
+ time.sleep(0.25)
0 commit comments