Please explain how the smart home system circuit design below is
connected and designed. The smart home will be able to automatic
on/off light through motion sensor, automatic on/off fan after
reaching 27 degree, send email when detect smoke. The bulb was
changed into a LED which is connected directly to the relay instead
of parallel with the fan.
Motion sensor PIR is connected to digital input D4.
DHT22 is connected at digital input D5.
Smoke sensor MQ-2 is connected to analog input A3
All the three sensors are connected to common ground with
required supply of 3.3V or 5V from the power section.
LCM1602 is the LCD driver and is connected at Analog inputs for its
operation along with the supply and ground.
on activation of the motion sensor and temperature above 27
degrees, corresponding signals are generated on digital pins 2 and
3.
on detection of smoke, an email will be sent.
Please explain how the smart home system circuit design below is connected and designed. The smar...
Please explain to me how the following arduino code control the
smart home system design below.
#include "ESP8266.h"
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <dht.h>
#define DATA_PIN 2
#define SSID "abc"
#define PASSWORD "12345678"
byte termometerLogo[8] =
{
B00100,
B01010,
B01010,
B01110,
B01110,
B11111,
B11111,
B01110
};
byte humidityLogo[8] =
{
B00100,
B00100,
B01010,
B01010,
B10001,
B10001,
B10001,
B01110,
};
SoftwareSerial mySerial(10,11);
ESP8266 wifi(mySerial);
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3,
POSITIVE);
dht DHT;
char buffData[150];
const int...
Part 1: Explore the Smart Home Step 1: Understanding the devices that comprise the smart home Commonly ISPs deliver data and video over a single coaxial cable. Starting from the attic, a coaxial splitter is used to separate the video signal from the data signal. a. Two coaxial cables leave the coaxial splitter in the topology shown. Which devices does the coaxial cable connect to? ____________________________________________________________________________________ b. The cable modem is the interface between the ISP’s network and the home’s...