Recent ESP32 Tutorials
ESP32 and Flame Sensor: A Beginner’s Guide
IntroductionThe ESP32 is a powerful and versatile microcontroller that has gained immense popularity in the IoT and embedded systems world…. read more
ESP32 and PCA9685: A Powerful Combination for Motor Control
IntroductionThe ESP32 is a versatile microcontroller that has gained immense popularity due to its low cost, high performance, and rich… read more
ESP32 and 16×2 LCD Display with I2C Module: A Comprehensive Guide
IntroductionThe ESP32 is a powerful and versatile microcontroller that has gained immense popularity due to its low cost, high performance,… read more
Controlling DC Motors with ESP32 and L298N Motor Driver: A Beginner’s Guide
IntroductionThe L298N is a popular H-bridge motor driver IC that can be used to control the direction and speed of… read more
Controlling Servo Motors with ESP32: A Beginner’s Guide
IntroductionServo motors are a type of actuator that can be controlled to rotate to a specific angle. They are widely… read more
ESP32 and BMP180
Hardware Setup:Obtain necessary components:ESP32 development board (e.g., ESP32-WROOM-32)BMP180 pressure and temperature sensor moduleBreadboard read more
ESP32 with TDS sensor and BLYNK
ESP32-Based Water Quality Monitoring System Using TDS Sensor and BLYNK
IntroductionWater quality is a crucial aspect of our daily lives,… read moreESP32 with DHT11 and BLYNK Dashboard
ESP32 and DHT11 with BLYNK
ESP32 and DHT11 with BLYNK: A Step-by-Step Guide Hardware Setup:ESP32 Board: Obtain an ESP32… read moreRecent Arduino Tutorials
What is Serial Communication in Arduino
What is Serial Communication in Arduino?
Serial communication between the Arduino board and a computer or other devices. All Arduino boards have at least one serial port (also known as a UART or USART), and some have several.BOARD USB CDC NAME SERIAL PINS SERIAL1 PINS SERIAL2 PINS SERIAL3 PINSUno, Nano, Mini0(RX), 1(TX)Mega0(RX), 1(TX)19(RX), 18(TX)17(RX), 16(TX)15(RX), 14(TX)Leonardo,… Read MoreBasic Functions of Arduino
Basic Functions of Arduino
Configures the specified pin to behave either as an input or an output and other basic operation.pinMode()
Description
Configures the specified pin to behave either as an input or an output. See the Digital Pins page for details on the functionality of the pins.As of Arduino 1.0.1, it is… Read MoreWhat is Variable in Arduino
In short What is Variable in Arduino
A variable is a named unit of data that may be assigned a value. variable is a named location in a memory where a program can manipulate the data. This location is used to hold the value of the variable. The value of… Read MoreArduino Display Data using IIC LCD Module
How to setup 16×2 lcd on Arduino? Its not big issue ,read full blog and watch video at the end of content. It is hard to display data using serial monitor. So if you want to display data of Arduino or given text to 16×2 Char LCD .This tutorial will…
Read MoreArduino PIR Motion Sensor Tutorial
PIR modules have a 3-pin connection at the side or bottom. The pinout may vary between modules so triple-check the pinout! It’s often silkscreened on right next to the connection (at least, ours is!) One pin will be ground, another will be signal and the final one will be power….
Read MoreHow to Install Arduino IDE?
Basic Step to install Arduino Latest IDE from the internet.goto Arduino Download as per your operating system.
Read More