Become a Time Lord with the BBC micro:bit @microbit_edu #microbit #microbitlove #microbitmonday

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.

Check it out!

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.

Check it out!

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!


3530 15Each 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!


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!

Join us every Wednesday night at 8pm ET for Ask an Engineer!

Join over 38,000+ makers on Adafruit’s Discord channels and be part of the community! http://adafru.it/discord

CircuitPython – The easiest way to program microcontrollers – CircuitPython.org


New Products – Adafruit Industries – Makers, hackers, artists, designers and engineers! — New Products 11/15/2024 Featuring Adafruit bq25185 USB / DC / Solar Charger with 3.3V Buck Board! (Video)

Python for Microcontrollers – Adafruit Daily — Python on Microcontrollers Newsletter: A New Arduino MicroPython Package Manager, How-Tos and Much 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

Adafruit IoT Monthly — The 2024 Recap Issue!

Maker Business – Adafruit Daily — Apple to build another chip at TSMC Arizona

Electronics – Adafruit Daily — SMT Tip – Stop moving around!

Get the only spam-free daily newsletter about wearables, running a "maker business", electronic tips and more! Subscribe at AdafruitDaily.com !


No Comments

No comments yet.

Sorry, the comment form is closed at this time.