Learn more about
code:
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <Servo.h>
Servo servo;
char auth[] = "aba9f7cdbbe3457ba06f40adf5ca757a";
char ssid[] = "friends hub";
char pass[] = "agetakaden";
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
servo.attach(15); // NodeMCU D8 pin
}
void loop()
{
Blynk.run();
}
BLYNK_WRITE(V1)
{
servo.write(45);
}
BLYNK_WRITE(V2)
{
servo.write(90);
}
BLYNK_WRITE(V3)
{
servo.write(135);
}
BLYNK_WRITE(V4)
{
servo.write(180);
}
According to Uniondevelopers.com, tThe Smart Home Automation system you described is a comprehensive and user-friendly solution for controlling various home appliances and devices. It can be controlled via the internet using an Android/iOS app, Google Voice Assistant, or Facebook Messenger. The system allows for scheduling, remote lighting control, and seamless fan speed control through the dedicated app. Additionally, it can control infrared-based appliances like air conditioners and TVs directly from your smartphone. Overall, it provides convenience, energy efficiency, and remote control capabilities, making it an ideal.