Micro:bit MicroPython: UART OBLOQ HTTP GET Request to Flask server

In this tutorial we are going to check how to send a HTTP GET request using a micro:bit board and a UART OBLOQ. We will be using MicroPython to program the micro:bit board. Introduction In this tutorial we are going to check how to send a HTTP GET request using a micro:bit board and a UART OBLOQ. We will be using …

Micro:bit uPython: using external pins for serial communication

In this tutorial we will learn how to use the Micro:bit pins to establish a serial connection, instead of using the USB connector. Introduction In this tutorial we will learn how to use the Micro:bit pins to establish a serial connection, instead of using the USB connector. That way, we can establish a serial connection …

ESP32 MicroPython: External interrupts

The objective of this post is to explain how to use external pin interrupts on MicroPython running on the ESP32. The tests were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board.   Introduction The objective of this post is to explain how to use external pin interrupts on MicroPython running on the ESP32. Please note …

ESP32 MicroPython: Timer interrupts

The objective of this post is to explain how to configure timer interrupts for MicroPython running on the ESP32. The tests were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to configure timer interrupts for MicroPython running on the ESP32. For more information on the …

ESP32 MicroPython: Passing arguments to a thread function

The objective of this post is to explain how to pass parameters to a thread function, on MicroPython running on a ESP32. The tests were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board.   Introduction The objective of this post is to explain how to pass parameters to a thread function, on MicroPython. For an …

ESP32 MicroPython: Getting the query parameters on a Picoweb app

The objective of this post is to explain how to get the query parameters of an HTTP request sent to a Picoweb app. The tests were performed on a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to get the query parameters of an HTTP request sent to a …

ESP32 MicroPython: Developing a simple URL query string parser

The objective of this post is to explain how to develop a very simple URL query string parser using MicroPython. The tests shown through this ESP32 tutorial were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board.   Introduction The objective of this post is to explain how to develop a very simple URL query string parser …