hIOTron
Created September 1, 2022

IoT-based-Smart-Home-Automation-System

The main objective of this project is to build a smart home device that can be used to control home appliances via the internet.

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

https://saurabhdaware.github.io/text-to-handwriting/

Story

Read more

Custom parts and enclosures

abbeman/solder-fume-fan

Schematics

fix_text_run_size__circuitdiagram_circuitdiagram867a488__github_2J8ywQCZYK.html

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.