IoT Projects

Smart Home Automation System: Control LEDs with NodeMCU and Blynk App

Circuit Diagram: Code: #define BLYNK_TEMPLATE_ID “*****************” // paste the copied details from blynk cloud #define BLYNK_TEMPLATE_NAME “***************” #define BLYNK_AUTH_TOKEN “******************” #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> int led1=14; int led2=15; char auth[] = BLYNK_AUTH_TOKEN; char ssid[] = “******”; //your hotspot name char pass[] = “******”; //your hotspot password name void setup() {  Serial.begin(9600);  Blynk.begin(auth, […]

Smart Home Automation System: Control LEDs with NodeMCU and Blynk App Read More »

How to Build a Wi-Fi Controlled Car Using NodeMCU, Blynk IoT, and L298N Motor Driver

In this project, we will build a Wi-Fi-controlled car using NodeMCU, Blynk IoT, and an L298N motor driver. This project allows you to control the car using your smartphone via the Blynk app, providing a fun and interactive way to explore IoT, robotics, and home automation. We’ll guide you step-by-step through the process of assembling

How to Build a Wi-Fi Controlled Car Using NodeMCU, Blynk IoT, and L298N Motor Driver Read More »

DHT11 Interfacing with NodeMcu & Blynk 2.0 | New Blynk 2.0 Project | Temperature & Humidity

Circuit Diagram: Code: #define BLYNK_TEMPLATE_ID “******************” #define BLYNK_TEMPLATE_NAME “******************” #define BLYNK_AUTH_TOKEN “******************” #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include <DHT.h> #define DHTPIN 14 // DHT11 sensor pin D5 #define DHTTYPE DHT11 // DHT11 sensor type DHT dht(DHTPIN, DHTTYPE); char auth[] = BLYNK_AUTH_TOKEN; char ssid[] = “*******”; // Your hotspot name char pass[] = “*******”;

DHT11 Interfacing with NodeMcu & Blynk 2.0 | New Blynk 2.0 Project | Temperature & Humidity Read More »

How to control RGB LED by Phone | Blynk IoT app

Circuit Diagram: Code: #define BLYNK_TEMPLATE_ID “***********” //copy id from blynk cloud web template and paste here #define BLYNK_DEVICE_NAME “***********” //copy id from blynk cloud web template and paste here #define BLYNK_FIRMWARE_VERSION        “0.1.2” #define BLYNK_PRINT Serial //#define BLYNK_DEBUG #define APP_DEBUG const int redled = 16;//D0 const int greenled = 5;//D1 const int blueled = 14;//D5 #include

How to control RGB LED by Phone | Blynk IoT app Read More »