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.
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.
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!
Adafruit publishes a wide range of writing and video content, including interviews and reporting on the maker market and the wider technology world. Our standards page is intended as a guide to best practices that Adafruit uses, as well as an outline of the ethical standards Adafruit aspires to. While Adafruit is not an independent journalistic institution, Adafruit strives to be a fair, informative, and positive voice within the community – check it out here: adafruit.com/editorialstandards
Stop breadboarding and soldering – start making immediately! Adafruit’s Circuit Playground is jam-packed with LEDs, sensors, buttons, alligator clip pads and more. Build projects with Circuit Playground in a few minutes with the drag-and-drop MakeCode programming site, learn computer science using the CS Discoveries class on code.org, jump into CircuitPython to learn Python and hardware together, TinyGO, or even use the Arduino IDE. Circuit Playground Express is the newest and best Circuit Playground board, with support for CircuitPython, MakeCode, and Arduino. It has a powerful processor, 10 NeoPixels, mini speaker, InfraRed receive and transmit, two buttons, a switch, 14 alligator clip pads, and lots of sensors: capacitive touch, IR proximity, temperature, light, motion and sound. A whole wide world of electronics and coding is waiting for you, and it fits in the palm of your hand.
Have an amazing project to share? The Electronics Show and Tell is every Wednesday at 7:30pm ET! To join, head over to YouTube and check out the show’s live chat and our Discord!
Python for Microcontrollers – Adafruit Daily — Python on Microcontrollers Newsletter: Diving into the Raspberry Pi RP2350, Python Survey Results and more! #CircuitPython #Python #micropython @ThePSF @Raspberry_Pi
EYE on NPI – Adafruit Daily — EYE on NPI Maxim’s Himalaya uSLIC Step-Down Power Module #EyeOnNPI @maximintegrated @digikey