Lights On/Off using Twitter

details

Lights On/Off using Twitter

light

Control your Home Lights using the Twitter platform.

Hardware components:
Arduino UNO & Genuino UNO
Ethernet Shield W5100
Relay module
Jumper wires (generic)
USB-A to B Cable
LAN Cable

Software apps and online services:
Arduino IDE
Blynk
IFTTT Maker Channel

 

Story

Schematics

Voice recognation bb

 

Code

#define BLYNK_PRINT Serial    
#include <SPI.h>
#include <Ethernet.h>   // Including Ethernet Library
#include <BlynkSimpleEthernet.h> // Including Blynk Ethernet Library
#include <SimpleTimer.h> // Including Timer Library

char auth[] = "";  // This the unique blynk code of our application
SimpleTimer timer;
void setup()
{
  Serial.begin(9600); // Start Serial Communication
  Blynk.begin(auth);  // Start connecting to the Blynk Server
  pinMode(3,OUTPUT);  // Setting Digital Pin 3 To OUTPUT to be connected to light
}

void loop()
{
  Blynk.run(); // Run the Application 
    timer.run(); // Starting the timer
}

 

For more information, please refer to the following link;

Source : https://www.hackster.io/KaustubhAgarwal/lights-on-off-using-twitter-e95023?ref=search&ref_id=blynk&offset=10займ за 2 минуты на карту без отказа

Lights On/Off using Twitter

light

Control your Home Lights using the Twitter platform.

Hardware components:
Arduino UNO & Genuino UNO
Ethernet Shield W5100
Relay module
Jumper wires (generic)
USB-A to B Cable
LAN Cable

Software apps and online services:
Arduino IDE
Blynk
IFTTT Maker Channel

 

Story

Schematics

Voice recognation bb

 

Code

#define BLYNK_PRINT Serial    
#include <SPI.h>
#include <Ethernet.h>   // Including Ethernet Library
#include <BlynkSimpleEthernet.h> // Including Blynk Ethernet Library
#include <SimpleTimer.h> // Including Timer Library

char auth[] = "";  // This the unique blynk code of our application
SimpleTimer timer;
void setup()
{
  Serial.begin(9600); // Start Serial Communication
  Blynk.begin(auth);  // Start connecting to the Blynk Server
  pinMode(3,OUTPUT);  // Setting Digital Pin 3 To OUTPUT to be connected to light
}

void loop()
{
  Blynk.run(); // Run the Application 
    timer.run(); // Starting the timer
}

 

For more information, please refer to the following link;

Source : https://www.hackster.io/KaustubhAgarwal/lights-on-off-using-twitter-e95023?ref=search&ref_id=blynk&offset=10займ за 2 минуты на карту без отказа

COMMENTS

Please Login to comment
  Subscribe  
Notify of