Vie GROK Learning
One of the main questions we see for people who’ve mastered the basics of MicroPython is “how do I make my program do more than one thing”. For example: a program might want to display something on the screen for a certain amount of time, but also respond to button presses during that time. Or perhaps it needs to remember to do something at some point in the future, but continue doing its main function until then.
What’s the problem?
This limitation comes up because most of the methods available to you will suspend the program until they have completed. A simple example is shown below where the program first scrolls a message and then starts responding to button presses.
This means that the code can’t respond to user input while the message is scrolling on the screen — the while loop doesn’t start until after display.scroll finishes. Conceptually, the display.scrollmethod “blocks” the program until it’s finished.
This program is supposed to count button presses, and it does work most of the time, but it can’t detect any presses while it’s scrolling the current number.
Don’t wait!
This can be solved in some cases using the wait=False“kwarg” (key word argument) that many of these blocking functions accept. See http://microbit-micropython.readthedocs.io/en/latest/display.html for details.
Now the display.scroll function no longer blocks, and we correctly count the number of presses, but this still has the unfortunate effect of “resetting” the display every time the button is pressed. If you’re pressing the button fast enough, you’d never actually see anything on the screen.
What we want instead is a way to have the display show the current count periodically — perhaps every 10 seconds. We’ll see how to do this at the end of the article.
See more details here!
Each Monday is Micro:bitMonday here at Adafruit! Designed specifically for kids and beginners, the micro:bit is a pocket-sized computer that you can code, customize and control to bring your digital ideas, games and apps to life! Play, learn, explore: get started with micro:bit! Adafruit is an authorized Micro:bit reseller- check out all of our posts, tutorials and Micro:bit related products!
Experimenting with your own Micro:bit project? Use the hashtag #microbitmonday so we can feature your inspiring work on the Adafruit blog!