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

Author: George Bantique

Tutorial: How to use 4x4 Keypad | Arduino

George Bantique July 28, 2020 No Comments

Keypad is commonly use in devices like ATM machine, microwave oven, safety vault, security door lock, and many more. In this tutorial we will focus on the most popular to electronics enthusiasts and tinkerers which is a 4×4 matrix keypad. We will discuss how it works and at the last we will provide an example […]


Read more Tutorial: How to use 4x4 Keypad | Arduino

Project Idea: Door Lock Security | Arduino

George Bantique July 23, 2020 3 Comments

In this project, we will create a door lock security system using an Arduino. The idea is as follows: The door lock is controlled by entering the correct password. If user password entered is correct, open the door lock If user password entered is wrong, an alarm will be triggered (alarm sound and flashing of […]


Read more Project Idea: Door Lock Security | Arduino

Multitasking with Arduino | Relay Timer Controller | using millis

George Bantique July 22, 2020 5 Comments

In this demonstration, I show a Relay Timer Controller. The multitasking is achieve using the power of millis function. The following task are achieve: The On state of the relay (simulated through the LED). Navigating the LCD menu using buttons. CIRCUIT DIAGRAM VIDEO DEMONSTRATION CALL TO ACTION If you like this article, please give me […]


Read more Multitasking with Arduino | Relay Timer Controller | using millis

Tutorial Understanding Blink Without Delay | How to millis

George Bantique July 20, 2020 6 Comments

In this tutorial, we will learn how BlinkWithoutDelay example can be use to do multiple task at the same time. CIRCUIT DIAGRAM VIDEO DEMONSTRATION SOURCE CODE 1. Blinking 3 LED in Different Intervals // LED definitions for easy reference #define RED_LED A0 #define YEL_LED A1 #define BLU_LED A2 // variables for the red LED bool […]


Read more Tutorial Understanding Blink Without Delay | How to millis