-
Notifications
You must be signed in to change notification settings - Fork 28
Fixed Flicker for Numbers when Autowrite is on #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I also tested that this didn't break the work I did for Adafruit_CircuitPython_FeatherWing. Note: This was only tested on the 14-Segment display as that's all I have at the moment. |
That will cover it for an actual number input: disp.print(1234) but not for string: disp.print("1234") Take a look at how How about:
|
Yeah, I especially noticed it with the numbers. I'll go ahead and experiment with it some more and write a little test script that can work for strings too. Something along the lines of:
That should make any flickering pretty evident. |
I did as you suggested and it looks good so far. I want to test some more before I call it good. |
Cool. Ping me when you're ready for another look. I've got the other displays and can test them. |
Yep @caternuson. It's ready for you to take another look. |
Let's good. Tested and working on a 7 segment. Thanks for the fix. |
Updating https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol to 0.2.2 from 0.2.1: > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#23 from jerryneedell/jerryn_examples > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#16 from brentru/particle-webcl-simpletest > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#22 from jerryneedell/jerryn_ping > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#19 from ladyada/master > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#18 from jerryneedell/jerryn_post_requests > Merge pull request adafruit/Adafruit_CircuitPython_ESP_ATcontrol#17 from ladyada/master Updating https://github.com/adafruit/Adafruit_CircuitPython_HT16K33 to 2.1.3 from 2.1.2: > Merge pull request adafruit/Adafruit_CircuitPython_HT16K33#30 from makermelissa/flicker-fix Updating https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing to 1.1.1 from 1.0.1: > Merge pull request adafruit/Adafruit_CircuitPython_FeatherWing#23 from makermelissa/master > Merge pull request adafruit/Adafruit_CircuitPython_FeatherWing#21 from makermelissa/master
Fixed Flicker for Numbers when Autowrite is on
See #29