Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Design block diagram and flow chart for the code #define BLYNK _ TEMPLATE _ ID TMPL 6 hSv _ LkYE #define BLYNK _ TEMPLATE

Design block diagram and flow chart for the code
#define BLYNK_TEMPLATE_ID "TMPL6hSv_LkYE"
#define BLYNK_TEMPLATE_NAME "Quickstart Template"
#define BLYNK_AUTH_TOKEN "YolLp4ChGWU97NvUsWsx3E907t615-wO"
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include
#include
// Your WiFi credentials.
char ssid[]= "Eman";
char pass[]="12345678";
#include
Servo servo;
#define servo_pin D1
#define led_pin D2
// servo open close
BLYNK_WRITE(V0){
// Set incoming value from pin V0 to a variable
int switch_open = param.asInt();
if (switch_open){
servo.write(90);
}
else{
servo.write(0);
}
}
// led on off
BLYNK_WRITE(V1){
// Set incoming value from pin V0 to a variable
int led_on = param.asInt();
if (led_on){
digitalWrite(led_pin,1);
}
else{
digitalWrite(led_pin,0);
}
}
void setup(){
// Debug console
Serial.begin(115200);
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
servo.attach(servo_pin);
}
void loop(){
Blynk.run();
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Marketing The Ultimate Marketing Tool

Authors: Edward L. Nash

1st Edition

0070460639, 978-0070460638

More Books

Students also viewed these Databases questions

Question

2. Identify conflict triggers in yourself and others

Answered: 1 week ago