Learn electronics, coding, and projects — step by step.

Series: ESP32 MicroPython

025 - ESP32 MicroPython: ESP32 Bluetooth Low Energy

George Bantique August 15, 2021 11 Comments

In this article, I will discussed how you can use ESP32 BLE capability using MicroPython. Bluetooth Low Energy or BLE is very popular on most devices today because of its low power consumption. That is achieve by constantly switching to sleep mode then once in a while wakes up to process Bluetooth functions. With its low power requirements, it is best suited for battery operated applications.


Read more 025 - ESP32 MicroPython: ESP32 Bluetooth Low Energy

023 - ESP32 MicroPython: Binary Clock

George Bantique February 19, 2021 1 Comment

In this article, I would like to share to you on how to create this simple yet cool project using a single 8×8 dot matrix module to display a binary clock – a clock that is represented using binary numeric system.


Read more 023 - ESP32 MicroPython: Binary Clock

022 - ESP32 MicroPython: MQTT Part 2: Subscribe

George Bantique December 14, 2020 3 Comments

In the previous tutorial, I demonstrate the use of MQTT protocol by sending DHT sensor readings to Thingspeak as MQTT broker while the ESP32 serves as MQTT client. The act of MQTT client sending data to MQTT broker is called MQTT publish. Now in this tutorial, I will demonstrate the other direction of MQTT communication which […]


Read more 022 - ESP32 MicroPython: MQTT Part 2: Subscribe