SlideShare a Scribd company logo
1 of 17
Download to read offline
LECTURE 4
STEPS TO BE DONE IN ARDUINO IDE
FOR MONITORING SENSOR VALUES
RESULT
To use node- MCU board in Arduino IDE,
It is necessary to do the following 4 steps.
Then in step 5 & 6 setup is configured for node
MCU and Blynk App
STEP 1
Download Arduino IDE based on your Operating system from the link
https://www.arduino.cc/en/main/software
and install it as the normal software
Check
Open the Arduino IDE. connect the node MCU board to the laptop .
Go to tools port & check some port is selected as shown . It should be
automatically selected.
STEP 2
Open the Arduino IDE and go to File  Preferences.
In Additional Board Manager URL field add the following address.
http://arduino.esp8266.com/stable/package_esp8266com_index.json
STEP 3
Go to Tools Boards  Board manager and select “esp8266 by ESP8266
Community” and click the Install button. (It will take some time to download. Please
wait). You will be seeing the word installed next to it.
Once Completed you can
see INSTALLED as
shown
Choose the Board
Go to Tools Board and select NodeMCU 0.9/1.0.
STEP 4
Go to Tools upload speed and select 115200.
STEP 5
Once completing the above 4 steps, copy the “Program” and paste in IDE
The “program ” uses the Blynk library So,
i) Download Blynk library from the following URL
https://github.com/blynkkk/blynk-library/releases/tag/v0.5.2
ii) Then, in arduino IDE go to Sketch Include Library  Add Zip Library and select
the downloaded zip file.
iii) Finally, In “PROGRAM 1” change the “authorized token”, “WiFi user name” and “WiFi
password” to yours
char auth[] = "4042a240e2ea48bea5ffeeadb13eb715"; // Your token number sent to your email
char ssid[] = "Moto C Plus 2634"; // your Wi- Fi User name
char pass[] = "password"; //your Wi-Fi Password
FINAL STEP
Once done upload it to the node MCU by clicking upload button
CONGRATULATIONS!
YOU HAVE DONE
THE STEPS TO BE DONE IN ARDUINO IDE
IT’S TIME FOR ACTION!
Check: Ensure that Wi- Fi and internet connection
in your PC/ smartphone are working properly.
Once uploaded the program in node MCU, click play button in
Blynk App
RESULT
Now, You can see the real time sensor value in GAUGE
voltage = sensor value * (3.3/1024)
milli-volt = sensor value *
(3.3/1024)*1000
Example
milli-voltage =
131* (3.3 /1024)*1000 = 422 mV =
42.2 deg C
If you see the above result then GOAL 1 is
achieved!!!
Lets interpret the program#define BLYNK_PRINTSerial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = “type authorized token sent to your mail id ";
char ssid[] = “type Wifi User Name here";
char pass[]= “Type Wifie password here";
BlynkTimer timer;
void myTimerEvent()
{.
float sensor=analogRead(A0);
Blynk.virtualWrite(V5,sensor);
}
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
timer.setInterval(1000L, myTimerEvent);
}
void loop()
{
Blynk.run();
timer.run();
}

More Related Content

Similar to Steps to be done in arduino ide for monitoring

Raspberry pi and Azure
Raspberry pi and AzureRaspberry pi and Azure
Raspberry pi and AzureFaisal Mehmood
 
Arduino Full Tutorial
Arduino Full TutorialArduino Full Tutorial
Arduino Full TutorialAkshay Sharma
 
comenzando con MATLAB y Simulink para Arduino
comenzando con MATLAB y Simulink para Arduinocomenzando con MATLAB y Simulink para Arduino
comenzando con MATLAB y Simulink para ArduinoSANTIAGO PABLO ALBERTO
 
DeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel EdisonDeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel EdisonGabriel Arnautu
 
Pic programming gettingstarted
Pic programming gettingstartedPic programming gettingstarted
Pic programming gettingstartedAjit Padmarajan
 
Vo ip guide
Vo ip guideVo ip guide
Vo ip guideACP
 
Taishaun_OwnensCNS-533_Lab
Taishaun_OwnensCNS-533_LabTaishaun_OwnensCNS-533_Lab
Taishaun_OwnensCNS-533_LabTaishaun Owens
 
Blinking a Single LED
Blinking a Single LEDBlinking a Single LED
Blinking a Single LEDRihab Rahman
 
Smart homes using android
Smart homes using androidSmart homes using android
Smart homes using androidDroidcon Berlin
 
ibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkDavid Jones
 
ESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started GuideESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started Guidehandson28
 
Arduino Development For Beginners
Arduino Development For BeginnersArduino Development For Beginners
Arduino Development For BeginnersFTS seminar
 
[Hack3City] Estimote Beacons development - get started
[Hack3City] Estimote Beacons development - get started[Hack3City] Estimote Beacons development - get started
[Hack3City] Estimote Beacons development - get startedMateusz Klimczak
 
Node red with Arduino
Node red with ArduinoNode red with Arduino
Node red with ArduinoAnshu Pandey
 
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTree
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTreeThe Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTree
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTreeRedBlackTree
 
BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17Python0x0
 
Get Started with MicroPython ESP32
Get Started with MicroPython ESP32Get Started with MicroPython ESP32
Get Started with MicroPython ESP32fanghe22
 

Similar to Steps to be done in arduino ide for monitoring (20)

Esp8266 v12
Esp8266 v12Esp8266 v12
Esp8266 v12
 
Road to RIoT 2017 Medan
Road to RIoT 2017 MedanRoad to RIoT 2017 Medan
Road to RIoT 2017 Medan
 
Raspberry pi and Azure
Raspberry pi and AzureRaspberry pi and Azure
Raspberry pi and Azure
 
Arduino Full Tutorial
Arduino Full TutorialArduino Full Tutorial
Arduino Full Tutorial
 
comenzando con MATLAB y Simulink para Arduino
comenzando con MATLAB y Simulink para Arduinocomenzando con MATLAB y Simulink para Arduino
comenzando con MATLAB y Simulink para Arduino
 
DeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel EdisonDeviceHub - First steps using Intel Edison
DeviceHub - First steps using Intel Edison
 
Pic programming gettingstarted
Pic programming gettingstartedPic programming gettingstarted
Pic programming gettingstarted
 
Vo ip guide
Vo ip guideVo ip guide
Vo ip guide
 
Taishaun_OwnensCNS-533_Lab
Taishaun_OwnensCNS-533_LabTaishaun_OwnensCNS-533_Lab
Taishaun_OwnensCNS-533_Lab
 
Blinking a Single LED
Blinking a Single LEDBlinking a Single LED
Blinking a Single LED
 
Smart homes using android
Smart homes using androidSmart homes using android
Smart homes using android
 
ibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawkibeacons, Privacy & Customer Segmentation - StreetHawk
ibeacons, Privacy & Customer Segmentation - StreetHawk
 
ESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started GuideESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started Guide
 
Arduino Development For Beginners
Arduino Development For BeginnersArduino Development For Beginners
Arduino Development For Beginners
 
Appium_set_up
Appium_set_upAppium_set_up
Appium_set_up
 
[Hack3City] Estimote Beacons development - get started
[Hack3City] Estimote Beacons development - get started[Hack3City] Estimote Beacons development - get started
[Hack3City] Estimote Beacons development - get started
 
Node red with Arduino
Node red with ArduinoNode red with Arduino
Node red with Arduino
 
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTree
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTreeThe Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTree
The Mobile ToolChain with Fastlane - Code Red Talk at RedBlackTree
 
BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17
 
Get Started with MicroPython ESP32
Get Started with MicroPython ESP32Get Started with MicroPython ESP32
Get Started with MicroPython ESP32
 

More from Citharthan Durairaj

Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...
Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...
Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...Citharthan Durairaj
 
Closed Loop I-F control using six step current source inverter
Closed Loop I-F control using six step current source inverterClosed Loop I-F control using six step current source inverter
Closed Loop I-F control using six step current source inverterCitharthan Durairaj
 
Voltage Source Inverter VSI - Six Step Switching
Voltage Source Inverter VSI - Six Step Switching Voltage Source Inverter VSI - Six Step Switching
Voltage Source Inverter VSI - Six Step Switching Citharthan Durairaj
 
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)Voltage Source Inverter VSI - Pulse Width Modulation (PWM)
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)Citharthan Durairaj
 
V/F control of Induction Motor - Variable voltage and Variable frequency
V/F control of Induction Motor - Variable voltage and Variable frequencyV/F control of Induction Motor - Variable voltage and Variable frequency
V/F control of Induction Motor - Variable voltage and Variable frequencyCitharthan Durairaj
 
Voltage control of Induction Motor
Voltage control of Induction MotorVoltage control of Induction Motor
Voltage control of Induction MotorCitharthan Durairaj
 
Equivalent circuit of Induction Motor
Equivalent circuit of Induction MotorEquivalent circuit of Induction Motor
Equivalent circuit of Induction MotorCitharthan Durairaj
 
Torque speed characteristics of Squirrel cage & Slip ring induction motors
Torque speed characteristics of Squirrel cage & Slip ring induction motorsTorque speed characteristics of Squirrel cage & Slip ring induction motors
Torque speed characteristics of Squirrel cage & Slip ring induction motorsCitharthan Durairaj
 
Induction Motor- Principle of Operation
Induction Motor- Principle of Operation Induction Motor- Principle of Operation
Induction Motor- Principle of Operation Citharthan Durairaj
 
Steps to be done in blynk app to get alert notification or email
Steps to be done in blynk app to get alert notification or emailSteps to be done in blynk app to get alert notification or email
Steps to be done in blynk app to get alert notification or emailCitharthan Durairaj
 
Steps to be done in node mcu for monitoring
Steps to be done in node mcu for monitoringSteps to be done in node mcu for monitoring
Steps to be done in node mcu for monitoringCitharthan Durairaj
 
Steps to be done in blynk app for monitoring
Steps to be done in blynk app for monitoringSteps to be done in blynk app for monitoring
Steps to be done in blynk app for monitoringCitharthan Durairaj
 
Parallel operation of alternators 1
Parallel operation of alternators 1Parallel operation of alternators 1
Parallel operation of alternators 1Citharthan Durairaj
 

More from Citharthan Durairaj (16)

Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...
Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...
Equivalent Circuit, Phasor Diagram, Power Factor Control , V & Inverted V Cur...
 
Closed Loop I-F control using six step current source inverter
Closed Loop I-F control using six step current source inverterClosed Loop I-F control using six step current source inverter
Closed Loop I-F control using six step current source inverter
 
Voltage Source Inverter VSI - Six Step Switching
Voltage Source Inverter VSI - Six Step Switching Voltage Source Inverter VSI - Six Step Switching
Voltage Source Inverter VSI - Six Step Switching
 
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)Voltage Source Inverter VSI - Pulse Width Modulation (PWM)
Voltage Source Inverter VSI - Pulse Width Modulation (PWM)
 
V/F control of Induction Motor - Variable voltage and Variable frequency
V/F control of Induction Motor - Variable voltage and Variable frequencyV/F control of Induction Motor - Variable voltage and Variable frequency
V/F control of Induction Motor - Variable voltage and Variable frequency
 
Voltage control of Induction Motor
Voltage control of Induction MotorVoltage control of Induction Motor
Voltage control of Induction Motor
 
Equivalent circuit of Induction Motor
Equivalent circuit of Induction MotorEquivalent circuit of Induction Motor
Equivalent circuit of Induction Motor
 
Torque speed characteristics of Squirrel cage & Slip ring induction motors
Torque speed characteristics of Squirrel cage & Slip ring induction motorsTorque speed characteristics of Squirrel cage & Slip ring induction motors
Torque speed characteristics of Squirrel cage & Slip ring induction motors
 
Induction Motor- Principle of Operation
Induction Motor- Principle of Operation Induction Motor- Principle of Operation
Induction Motor- Principle of Operation
 
Steps to be done in blynk app to get alert notification or email
Steps to be done in blynk app to get alert notification or emailSteps to be done in blynk app to get alert notification or email
Steps to be done in blynk app to get alert notification or email
 
Steps to be done in node mcu for monitoring
Steps to be done in node mcu for monitoringSteps to be done in node mcu for monitoring
Steps to be done in node mcu for monitoring
 
Steps to be done in blynk app for monitoring
Steps to be done in blynk app for monitoringSteps to be done in blynk app for monitoring
Steps to be done in blynk app for monitoring
 
IoT Introduction
IoT Introduction IoT Introduction
IoT Introduction
 
stepper motors
stepper motors stepper motors
stepper motors
 
PMBLDC motors
PMBLDC motorsPMBLDC motors
PMBLDC motors
 
Parallel operation of alternators 1
Parallel operation of alternators 1Parallel operation of alternators 1
Parallel operation of alternators 1
 

Recently uploaded

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 

Recently uploaded (20)

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 

Steps to be done in arduino ide for monitoring

  • 1. LECTURE 4 STEPS TO BE DONE IN ARDUINO IDE FOR MONITORING SENSOR VALUES RESULT
  • 2. To use node- MCU board in Arduino IDE, It is necessary to do the following 4 steps. Then in step 5 & 6 setup is configured for node MCU and Blynk App
  • 3. STEP 1 Download Arduino IDE based on your Operating system from the link https://www.arduino.cc/en/main/software and install it as the normal software
  • 4. Check Open the Arduino IDE. connect the node MCU board to the laptop . Go to tools port & check some port is selected as shown . It should be automatically selected.
  • 5. STEP 2 Open the Arduino IDE and go to File  Preferences. In Additional Board Manager URL field add the following address. http://arduino.esp8266.com/stable/package_esp8266com_index.json
  • 6. STEP 3 Go to Tools Boards  Board manager and select “esp8266 by ESP8266 Community” and click the Install button. (It will take some time to download. Please wait). You will be seeing the word installed next to it. Once Completed you can see INSTALLED as shown
  • 7. Choose the Board Go to Tools Board and select NodeMCU 0.9/1.0.
  • 8. STEP 4 Go to Tools upload speed and select 115200.
  • 9. STEP 5 Once completing the above 4 steps, copy the “Program” and paste in IDE The “program ” uses the Blynk library So, i) Download Blynk library from the following URL https://github.com/blynkkk/blynk-library/releases/tag/v0.5.2 ii) Then, in arduino IDE go to Sketch Include Library  Add Zip Library and select the downloaded zip file. iii) Finally, In “PROGRAM 1” change the “authorized token”, “WiFi user name” and “WiFi password” to yours char auth[] = "4042a240e2ea48bea5ffeeadb13eb715"; // Your token number sent to your email char ssid[] = "Moto C Plus 2634"; // your Wi- Fi User name char pass[] = "password"; //your Wi-Fi Password
  • 10. FINAL STEP Once done upload it to the node MCU by clicking upload button
  • 11. CONGRATULATIONS! YOU HAVE DONE THE STEPS TO BE DONE IN ARDUINO IDE
  • 12. IT’S TIME FOR ACTION!
  • 13. Check: Ensure that Wi- Fi and internet connection in your PC/ smartphone are working properly.
  • 14. Once uploaded the program in node MCU, click play button in Blynk App
  • 15. RESULT Now, You can see the real time sensor value in GAUGE voltage = sensor value * (3.3/1024) milli-volt = sensor value * (3.3/1024)*1000 Example milli-voltage = 131* (3.3 /1024)*1000 = 422 mV = 42.2 deg C
  • 16. If you see the above result then GOAL 1 is achieved!!!
  • 17. Lets interpret the program#define BLYNK_PRINTSerial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> char auth[] = “type authorized token sent to your mail id "; char ssid[] = “type Wifi User Name here"; char pass[]= “Type Wifie password here"; BlynkTimer timer; void myTimerEvent() {. float sensor=analogRead(A0); Blynk.virtualWrite(V5,sensor); } void setup() { Serial.begin(9600); Blynk.begin(auth, ssid, pass); timer.setInterval(1000L, myTimerEvent); } void loop() { Blynk.run(); timer.run(); }