Esp8266 Node Mcu Wifi Module
Esp8266 Node Mcu Wifi Module
Esp8266 Node Mcu Wifi Module
PROCESSING RELAY
UNIT DRIVING
UNIT
INDUSTRIAL
LOADS
WI FI SHIELD CONTROL
FIRE SENSOR
WITH MICRO
PROCESSING
CONTROLLER
UNIT
NODE MCU
TEMPERATURE 2 WAY
SENSING ELECTRICAL
AGRICULTURE GAS LEAKAGE
MOISTURE SENSING SWITCHES
SENSOR
HOME DEVICE
NATURAL LIGHT COMPOUND CONTROL
SENSING LIGHTS
RECTIFIER FILTER
STEP DOWN CIRCUIT BATTERY
TRANSFORMER 5V REGULATOR TO ALL BACKUP
STAGES
MOTION DETECION
SENSOR/PROXIMITY
SENSOR
CONTROL ROOM
USER MOBILE UNIT WITH ANDROID
MOBILE UNIT ------- APPLICATION
INTRODUCTION TO
NODE MCU ESP8266
BOARD
• Using arduino ide sketch software we can dump program into node mcu
for writing and editing of program arduino ide software is used
• First we need to download esp8266 node mcu packages in aduino ide
• And then selection of board as node mcu esp8266-12e model
• Finally uploading the program to bord wait for uploading code fully 100%
PROGRAMMING CODE OUR PROJECT
MODULE
• #define BLYNK_PRINT Serial
• #include <ESP8266WiFi.h>
• #include <BlynkSimpleEsp8266.h>
•
• char auth[] = " auth code "; // You should get Auth Token in the Blynk
App.
• constint one = d0;
• constint two = d1;
• constint three = d2;
• constint four = d3;
• constint five = d4;
• constint six = d5;
• constint seven = d6;
• char ssid[] = " id "; // Your WiFi credentials.
• char pass[] = " pw "; // Set password
•
• void setup()
• {
• Serial.begin(9600); // Debug console
• Blynk.begin(auth, ssid, pass);
• pinMode (one, INPUT);
• pinMode (two, INPUT);
• pinMode (three, INPUT);
• pinMode (four, INPUT);
• pinMode (five, INPUT);
• pinMode (six, INPUT);
• pinMode (seven, INPUT);
• if (d0==1)
• {
• "message“
• }
THANK YOU