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

Month: July 2020

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

Tutorial: How to Use Arduino Uno as HID | Part 1: Arduino Keyboard Emulation

George Bantique July 14, 2020 16 Comments

Arduino boards are pre-configured to function as serial device so to emulate keyboard, we will reconfigure it as Human Interface Device (HID) so our computer will see it as keyboard. CIRCUIT DIAGRAM VIDEO DEMONSTRATION CALL TO ACTION If you find this tutorial as helpful, please consider supporting my Youtube channel, it’s TechToTinker. Please click this […]


Read more Tutorial: How to Use Arduino Uno as HID | Part 1: Arduino Keyboard Emulation