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

Sections: Archives

003 - ESP32 MicroPython: General Purpose Input Output | GPIO Pins

George Bantique September 9, 2020 1 Comment

VIDEO DEMONSTRATION CALL TO ACTION If you like this tutorial and you find it useful, please Share it to your friends. Please consider also supporting me by Subscribing. Click this to Subscribe to TechToTinker Youtube channel. SOURCE CODE Example 1 import machine import time led = machine.Pin(2, machine.Pin.OUT) counter = 0 while (counter < 5): […]


Read more 003 - ESP32 MicroPython: General Purpose Input Output | GPIO Pins

001 - ESP32 MicroPython: What is MicroPython

George Bantique September 7, 2020 1 Comment

MicroPython is essentially a Python created for microcontrollers. MicroPython is a light-weight and compact implementation of Python Programming Language. It is stripped and trimmed down in order to work with embedded devices which basically has limited resources. And with the help of machine modules, we can easily communicate with the hardware input and output devices. […]


Read more 001 - ESP32 MicroPython: What is MicroPython

000 - ESP32 MicroPython: How to Get Started with MicroPython

George Bantique September 5, 2020 8 Comments

In this article you will learn how to get started with MicroPython explorations. We will begin to learn to install first a Thonny Python IDE for developing MicroPython codes for development board of your choice. I will be using an ESP32 development board. INSTRUCTION Download the Thonny Python IDE at: Download Thonny Python This is […]


Read more 000 - ESP32 MicroPython: How to Get Started with MicroPython

Tutorial: How to use MFRC522 RFID module using Arduino

George Bantique September 1, 2020 1 Comment

I am sharing this tutorial so someone might benefited from it somehow. I am fascinated with RFIDs capability, though this technology has been around many years before me. Now that I have this module, I tried to play with it. The RFID tags can contain 1 kilo bytes of data, amazing right? CIRCUIT DIAGRAM VIDEO […]


Read more Tutorial: How to use MFRC522 RFID module using Arduino

Tutorial: How to use 2.4 TFT Display | SPFD5408 | ILI9341

George Bantique August 26, 2020 16 Comments

Display modules is commonly use to show text, shapes, images, or animation to convey necessary information to the user. In this tutorial, we will learn to use the 2.4 inch TFT display. VIDEO DEMONSTRATION CALL TO ACTION If you have any question, please do not hesitate to write it in the comment box and I […]


Read more Tutorial: How to use 2.4 TFT Display | SPFD5408 | ILI9341