design and implementation of smart office management system

32
DESIGN AND IMPLEMENT OF SMART OFFICE MANAGEMENT SYSTEM MD. Manan Rain ID:112125 Aminur Rasul MD. Aktar Hossain ID: 092061 ID : 112039 Supervisor: Professor Dr. Md. Raju Ahmed Department of Electrical & Electronic Engineering DUET, Gazipur-1700

Upload: dhaka-university-of-engineering-technology

Post on 23-Jan-2018

403 views

Category:

Engineering


5 download

TRANSCRIPT

Page 1: Design and Implementation of smart office management system

DESIGN AND IMPLEMENT OF SMART

OFFICE MANAGEMENT SYSTEM

MD. Manan Rain

ID:112125

Aminur Rasul MD. Aktar Hossain

ID: 092061 ID : 112039

Supervisor: Professor Dr. Md. Raju Ahmed

Department of Electrical & Electronic Engineering

DUET, Gazipur-1700

Page 2: Design and Implementation of smart office management system

OBJECTIVES

To save Electrical Energy Consumption i.e. Minimize in

Electrical energy bill.

To provide security as well as monitor the Activities inside the

office via IP Web Cam.

Automatically Air freshening With Time interval

Page 3: Design and Implementation of smart office management system

INTRODUCTION

Sometimes all peoples go out of the room but still fan light and

running, this is waste of energy, that need to be minimized..

Main door automatically close/open with counting incoming/outgoing

persons. i.e. it is very useful where air condoning is installed. It causes

proper use of Air conditioning system.

Boss’s(Head ) Room is Lock/Unlock Via-Bluetooth App using desired

character i.e. Password.

Page 4: Design and Implementation of smart office management system

IP web cam App is used to monitor activities safely and

remotely access. Old android mobile set can be used ,so reduced

cost of installation CCTV.

Auto detection of darkness of environment. It also save

electrical energy consumption. This type of system can be used

in street light system.

Page 5: Design and Implementation of smart office management system

SLIDE DOOR

SL

IDE

DO

OR

STRUCTURE OF SMART OFFICE

LD

R

se

nso

r

Page 6: Design and Implementation of smart office management system

METHODOLOGY

One Slide door is control by PLC . Two photo sensor is used

detect person ,then open door after 3 sec close automatically.

Another door via Bluetooth –Arduino. Bluetooth app is user

defined so it is security system.

Auto Air Freshener is run by Arduino. It uses timer in Arduino

as required time interval. Also it is user defined.

Page 7: Design and Implementation of smart office management system

Darkness of environment senses by LDR sensor. Then Light is

controlled according to Darkness.

Activities monitor through IP Cam App on PC. It uses ip address

according to IP web cam App. So it is used in Wi-Fi as well as Hot Spot

tethering.

Counting is controlled by PLC & Photo sensor.it has special features

increment/decrement in counter until both sensor sense person.

Page 8: Design and Implementation of smart office management system

NO. OF PERSON

01METHODOLOGY

sens

or

Page 9: Design and Implementation of smart office management system

NO. OF PERSON

00METHODOLOGY

Sen

sor

Page 10: Design and Implementation of smart office management system

Smartphone Door Security & load control

Door control By touch Lock &

Unlock

Electrical Loads controlled by

Bluetooth App.

Arduino

Page 11: Design and Implementation of smart office management system

Arduino

An open-source electronics ATmega328P

platform based use hardware and software.

14 digital input/output pins , 6 analog

inputs, a 16 MHz quartz crystal.

Input voltage - 7-12V.

32k Flash Memory. Arduino Uno

Page 12: Design and Implementation of smart office management system

Programmable Logic Controller

A digital computer used for automation of typically

industrial electromechanical processes.

Operate on AC/DC (115-240v).

8 inputs pin & 4 output with extension module.

Negligible probability of hanging of programme during

running

PLC LOGO

Page 13: Design and Implementation of smart office management system

Bluetooth Module

Typical -80dBm sensitivity.

Low Power 1.8V Operation ,1.8 to 3.6V I/O.

Chipset CSR BC417143.

With integrated antenna.

HC-05

Page 14: Design and Implementation of smart office management system

PHOTOELECTRIC SENSOR

Detect the distance, absence, or presence of an

object.

Assembled light transmitter, often infrared, and a

photoelectric receiver.

Four wires in Photo sensor.

PHOTOELECTRIC SENSOR

Page 15: Design and Implementation of smart office management system

Solid state relay

An electronic switching device that switches ON or

OFF when a small external voltage is applied

across its control terminals.

It operate on the basis of electromagnetism.

It has e at least three pole two exciting & another

three NC,NO and COM.

6 V DC Relay

24 V DC Relay

Page 16: Design and Implementation of smart office management system

DC MOTOR

A electrical machines that converts DC electrical

power into mechanical power. 6 V volts and is

controlled by the Arduino Microcontroller.

DC gear motor operates on 12 volts and is

controlled by the Arduino Microcontroller. It is 600 r.p.m. but due to gear output high power and

less r.p.m. DC MOTOR

Page 17: Design and Implementation of smart office management system

LDR

Made up of semiconductor materials having

high resistance.

The electrons in the valence band of the

semiconductor material are excited to the

conduction band.

Resistance of LDR is inversely proportional

to the light intensityLDR connection diagram

Page 18: Design and Implementation of smart office management system

PLC LADDER DIAGRAM SIMULATION

Page 19: Design and Implementation of smart office management system

ARDUINO PROGRAMME

• # Programming in Arduino for Bluetooth module and analog signal

• int sensorpin1=A4; int sensorvalue1=0; //

• int sensorpin2=A5; int sensorvalue2=0; // lamp dimmer

• void setup()

• // initialize serial communication:

• Serial.begin(9600);

• // initialize the LED pins:

• pinMode(3, OUTPUT); // for Door Open close

• pinMode(4, OUTPUT);

• pinMode(A0, OUTPUT); // for Light ON/ OFF

• pinMode(A1, OUTPUT); // for Fan ON/ OFF

• pinMode(A2, OUTPUT); // for IN/OUT

• pinMode(A3, OUTPUT);

• pinMode(9, OUTPUT); //

• pinMode(10, OUTPUT); // lamp dimmer

• void loop()

• sensorvalue1=analogRead(sensorpin1);

• sensorvalue2=analogRead(sensorpin2);

• if (sensorvalue1<300 )

• digitalWrite(10,HIGH);

• else digitalWrite(10,LOW);

• if (sensorvalue2<300 )

• digitalWrite(9,HIGH);

• else digitalWrite(9,LOW);

• // read the Bluetooth sensor:

• if (Serial.available() > 0)

• char inByte = Serial.read();

• switch (inByte)

• case 'A':

• digitalWrite(3, HIGH);

• delay(1000);

• digitalWrite(3, LOW);

• break;

Page 20: Design and Implementation of smart office management system

ARDUINO PROGRAMME

• case 'a':

• digitalWrite(4, HIGH);

• delay(1000);

• digitalWrite(4, LOW);

• break;

• case 'B':

• digitalWrite(A0, HIGH);

• break;

• case 'b':

• digitalWrite(A0, LOW);

• break;

• case 'C':

• digitalWrite(A1, HIGH);

• break;

• case 'c':

• digitalWrite(A1, LOW);

• break;

• case 'D':

• digitalWrite(A2, HIGH);

• break;

• case 'd':

• ;

• case 'd':

• digitalWrite(A2, LOW);

• break;

• case 'E':

• digitalWrite(A3, HIGH);

• break;

• case 'e':

• digitalWrite(A3, LOW);

• break;

Page 21: Design and Implementation of smart office management system

PROTEUS SIMULATION

Page 22: Design and Implementation of smart office management system

ARDUINO BLUETOOTH CONNECTION

DIAGRAM

Page 23: Design and Implementation of smart office management system

CONNECTION DIAGRAM OF CIRCUIT

Page 24: Design and Implementation of smart office management system

FUNCTION BLOCK DIAGRAM

Control System

PLC/Arduino

Light

ON/OFFLDR Sensor

Door Sensor

Door Open/Close

Air

Freshener

Power

Supply

Bluetooth system

Head Room’s

System Control

Page 25: Design and Implementation of smart office management system

RESULTActivities Devices Output Pin

People Enter/Exit

Photo Sensor HIGH (1)

PLC/

(Motor Forward & Reverse)

Q2 Q3

HIGHLO

W

Delay 3sec

LOW

HI

G

H

Load Control

inside Boss’s

Room

LoadBluetooth Sending

CharacterArduino Pin

Dooropen ‘A’ 3 -HIGH & 4 -LOW

close ‘a’ 4 -HIGH & 3 -LOW

FanON ‘B’ A0-HIGH

OFF ‘b’ A0-LOW

LightON ‘C’ A1-HIGH

OFF ‘c’ A1-LOW

IN/OU

T

Red ‘D’ A2-HIGH

Green ‘d’ A2-LOW

Environment Darkness (below) LDRAbove 100 KΩ

Below 300mv

Auto Air freshener Motor

Arduino Pin

11-HIGH

Delay

11-HIGH

Page 26: Design and Implementation of smart office management system

ADVANTAGES

It saves electrical energy consumption .

It provides better security and privacy.

It gives comfortness to the officer and clients.

It saves time to operate properly.

It maximize the air conditioning effect due to auto door open/close.

Page 27: Design and Implementation of smart office management system

APPLICATIONS

Business Mall

Universities & Colleges

Hotel & Restaurants

Industries Office

Ministry Offices

Page 28: Design and Implementation of smart office management system

CONCLUSION

The expected result from this project:

Automatically control of electric load.

By controlling the speed of fan and brightness of light as our demand

saving the electricity.

Highly secured dooring system.

Automatically water flowing control of basin.

Record the history by cc TV.

Making more comfortness and mentally satisfactions.

Page 29: Design and Implementation of smart office management system

CONCLUSION

Using sensor device the speed of fan and brightness of light is controlled

By using Bluetooth apps highly secured door is constructed.

By using smart phone cc TV is developed.

Two rooms load is controlled by Arduino and PLC.

For some restriction automatically water control basin can not

developed. Further it can be developed

Page 30: Design and Implementation of smart office management system

FUTURE RECOMMENDATION

Adding auto irrigation.

Water flow from basin tap can be stop/start

by detecting Hand.

Fan will be control by temperature sensor

………………

Page 31: Design and Implementation of smart office management system

sensor

Page 32: Design and Implementation of smart office management system

Thank You !!!

Comments..?