hIOTron
Created September 1, 2022

IoT-based-smart-home-automation-system

Learn more about Industrial IoT solutions

11
IoT-based-smart-home-automation-system

Things used in this project

Hardware components

• NodeMCU esp 8266 • 4 channel relay module • Servo motor • Regulator • 5 volt adapter • Jumper wire
×1

Software apps and online services

Arduino Compiler Programming Language: C Blynk app Google voice assistant Messenger

Hand tools and fabrication machines

saurabhdaware/text-to-handwriting

Story

Read more

Code

IoT-based-Smart-Home-Automation-System

PHP
#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);
}

Credits

hIOTron
78 projects • 2 followers
hIOTron is an internet of things based company that offers an IoT Platform, products, IoT Solutions, and IoT Training.
Contact

Comments

Please log in or sign up to comment.