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

Category: 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

Tutorial: How to use SIM800L GSM Module using Arduino | Make or Answer Voice Calls

George Bantique July 17, 2020 3 Comments

Here we will further our exploration with the SIM800L GSM Module by testing the voice call capability. 1. Send ATD+ZZxxxxxxxxxx;<CR><LF> – this is tell the GSM module to dial the following mobile number ZZ – the country code of the mobile number you want to call xx – is the 10-digit mobile number ; – […]


Read more Tutorial: How to use SIM800L GSM Module using Arduino | Make or Answer Voice Calls

Tutorial: How to Use Arduino Uno as HID | Part 2: Arduino Mouse Emulation

George Bantique July 15, 2020 3 Comments

In this tutorial, we will explore the mouse emulation in Arduino Uno. This should be the part 2 in using the Arduino Uno as Human Interface Device. You may also want to visit the part 1 here: https://techtotinker.com/tutorial-how-to-use-arduino-uno-as-hid-part-1-arduino-keyboard-emulation/ CIRCUIT DIAGRAM VIDEO DEMONSTRATION SOURCE CODE /* Arduino USB Mouse HID demo */ /* Author: Darran Hunt […]


Read more Tutorial: How to Use Arduino Uno as HID | Part 2: Arduino Mouse Emulation