Book Image

MicroPython Cookbook

By : Marwan Alsabbagh
Book Image

MicroPython Cookbook

By: Marwan Alsabbagh

Overview of this book

MicroPython is an open source implementation of Python 3 that runs in embedded environments. With MicroPython, you can write clean and simple Python code to control hardware instead of using complex low-level languages such as C and C++. This book guides you through all the major applications of the MicroPython platform to build and program projects that use microcontrollers. This MicroPython book covers recipes that will help you experiment with the programming environment and hardware programmed in MicroPython. You'll find tips and techniques for building a variety of objects and prototypes that can sense and respond to touch, sound, position, heat, and light. This book will take you through the uses of MicroPython with a variety of popular input devices and sensors. You'll learn techniques to handle time delays and sensor readings, and apply advanced coding techniques to create complex projects. As you advance, you'll deal with Internet of Things (IoT) devices and integration with other online web services. In addition to this, you'll use MicroPython to make music with bananas and create portable multiplayer video games that incorporate sound and light animations into the gameplay. By the end of this book, you'll have mastered the tips and tricks to troubleshoot your development problems and take your MicroPython project to the next level.
Table of Contents (17 chapters)

Creating a function to wait for internet connectivity

This recipe will show you how to write a function that polls the status of your Wi-Fi connection on boot-up. We will name this function wait_for_networking. Once it has detected that a connection has been successfully established and that an IP address has been assigned over DHCP, then the wait_for_networking function will return.

Whenever you have a project that requires internet connectivity, you will face this issue at boot-up. If your script starts immediately, connecting to the internet before the network connection has come up, it will raise exceptions and fail to continue. Using the method in this recipe will let you start the rest of your program's execution once the network connection is properly established.

Getting...