Report Final 09
Report Final 09
INTRODUCTION TO ENGINEERING
PROJECT REPORT
Submitted by
SOEC-A2
T. Rekha 23UEEE0045
G. Divya 23UEEE0051
P. Divyanjali 23UEEE0035
Jawa 23UEEE0053
Mohanad 23UEEE0056
SIGNATURE SIGNATURE
EXAMINER 1 EXAMINER 2
ABSTRACT
The Bluetooth wireless technology is set to revolutionize the way people perceive
digital devices in our homes and office environment. Now they are no longer just
the individual devices; instead, with the embedded Bluetooth technology, they
form a network in which appliances can communicate with each other. This
wireless technology is especially useful in home environment, where there exists
hardly any infrastructure to interconnect intelligent appliances. It could be suitably
used for home automation in a cost-effective manner. Operating over unlicensed,
universally available frequency of 2.4 GHz, it can link digital devices within a
range of 10 m (expandable to 100 m, by increasing the transmitted power) at the
speed of 1 Mbps. Building upon this theme; we propose a home automation system
based on. Bluetooth technology. There are certain issues involved in the design of
a home automation system. The system should be scalable, so that new device can
easily be integrated into it. It should provide a user-friendly interface on the host
side, so that the device scan be setup, monitored and controlled. The Bluetooth
wireless technology is set to revolutionize the way perceive digital devices in our
homes.
TABLE OF CONTENTS
1 INTRODUCTION 1
2 EXISTING SYSTEM 2
3 PROBLEM IDENTIFICATION 3
4 PROPOSED SYSYTEM 5
5 BLOCK DIAGRAM 6
6 MATERIALS 7
7 WORKING 9
8 SOFTWARE DETAILS 10
9 SOURCE CODE 11
10 HARDWARE DESCRIPTION 13
12 CONCLUSION 15
13 REFERENCE 16
LIST OF FIGURES
CHAPTER I
INTRODUCTION
In today's tech-driven world, home automation is gaining momentum,
offering convenience and efficiency. Our presentation focuses on
Bluetooth-based home automation using Arduino UNO. Aim to
showcase the seamless integration of Bluetooth technology with
Arduino UNO, providing a practical solution for creating a connected
home environment. Explore the technical intricacies and potential
innovations in this field. Revolutionizing the way we interact with our
living spaces, Bluetooth-based home automation offers unparalleled
convenience and control at our fingertips. By seamlessly integrating
smart devices, such as lights, thermostats, and security systems, into a
unified network, users can effortlessly manage and monitor their homes
from anywhere with a simple tap on their smartphone. Whether
adjusting the ambiance with customizable lighting presets or ensuring
peace of mind through remote monitoring of security cameras, Bluetooth
home automation empowers individuals to tailor their environments to
their preferences, enhancing comfort, efficiency, and security in the
modern homes.
1
CHAPTER II
EXISTING SYSTEM
Designing an exciting system for Bluetooth-based home automation involves
integrating various smart devices like lights, thermostats, locks, and sensors. You
can create a central control hub using a Raspberry Pi or Arduino, equipped with
Bluetooth modules to communicate with the devices. Develop a mobile app for
user control, enabling functions like scheduling, remote access, and voice
commands through integration with platforms like Google Assistant or Alexa.
Additionally, consider implementing machine learning algorithms for predictive
automation and energy optimization. Device Interconnectivity: Bluetooth enables
seamless communication between various smart devices within the home, such as
lights, thermostats, speakers, and security systems, allowing for centralized control
via smartphone or tablet. Ease of Installation: Compared to wired systems,
Bluetooth-based home automation systems are often easier to install as they
typically do not require complex wiring or professional assistance. Users can
simply pair their devices with a central hub or directly with their smartphone.
Energy Efficiency: Bluetooth Low Energy (BLE) technology, commonly used in
smart home devices, ensures minimal power consumption, making it ideal for
controlling energy-efficient appliances and devices remotely.
CHAPTER III
PROBLEM IDENTIFICATION
PROBLEM 1:
Many homeowners face the challenge of manually controlling various appliances
and devices in their homes, leading to inefficiency and inconvenience.
Additionally, traditional home automation systems can be complex and expensive
to implement.
SOLUTION:
3
PROBLEM 2:
Elderly individuals or people with limited mobility often struggle with manually
operating home appliances and devices, leading to a loss of independence and .
Simple tasks such as turning on lights or adjusting room temperature can become
challenging, impacting their quality of life.
SOLUTION:
4
CHAPTER IV
PROPOSED SYSTEM
Bluetooth-enabled Devices: Devices like lights, switches, locks, thermostats, etc.,
need Bluetooth capabilities to communicate with the central system. Central
Control Hub: A central hub acts as the brain of the system, receiving commands
from user devices and sending instructions to control various appliances. Mobile
App or Interface: Users interact with the system through a mobile app or interface,
allowing them to control devices remotely, set schedules, and monitor home status.
Bluetooth Mesh Network: Utilize Bluetooth mesh networking to enable
communication between multiple devices across a wide area, ensuring reliable
connectivity and scalability. Security Measures: Implement robust security
protocols to prevent unauthorized access and ensure the safety of the system and
user data. Automation Rules: Set up automation rules to automate tasks based on
predefined conditions, such as time of day, sensor readings, or user preferences.
Integration with Other Smart Home Platforms: Enable integration with other smart
home platforms like Amazon Alexa, Google Assistant, or Apple HomeKit for
enhanced functionality and compatibility. Power Management: Consider power
management solutions to optimize energy.
5
CHAPTER V
BLOCK DIAGRAM / DESIGN
CHAPTER VI
MATERIALS
RELAY:
ARDUINO UNO:
The Arduino Uno is an open source microcontroller based on
the Microchip ATmega328p microcontroller (MCU) and developed by Arduino.cc
and initially released in 2010.The microcontroller board is equipped with sets of
digital and analog input/output (I/O) pins that may be interfaced to various
expansion boards (shields) and other circuits. The board has 14 digital I/O pins
capable of PWM output), 6 analog I/O pins, and is programmable with the Arduino
IDE.
7
Fig. 6.2 Arduino
HC-05 Bluetooth:
CHAPTER VII
WORKING
10
CHAPTER IX
SOURCE CODE
// Process the command
if (command == 'ON1') {
digitalWrite(RELAY1_PIN, HIGH); // Turn on
RELAY 1
} else if (command == 'OFF1') {
DigitalWrite(RELAY1_PIN, LOW); // Turn off
RELAY 1
} else if (command == 'ON2') {
digitalWrite(RELAY2_PIN, HIGH); // Turn on
RELAY 2
} else if (command == 'OFF2') {
digitalWrite(RELAY2_PIN, LOW); // Turn off
RELAY 2
} else if (command == 'ON3') {
digitalWrite(RELAY3_PIN, HIGH); // Turn on
const int RELAY2_PIN = 3; // Pin number for RELAY
2
const int RELAY3_PIN = 4; // Pin number for RELAY
3
void setup() {
Serial.begin(9600); // Set the baud rate for serial communication
pinMode(RELAY1_PIN, OUTPUT);
pinMode(RELAY2_PIN, OUTPUT);
pinMode(RELAY3_PIN, OUTPUT);
}
void loop() {
if (Serial.available()) {
String command = Serial.readString(); // Read the
incoming command as a string
11
RELAY 3
12
CHAPTER X
HARDWARE DISCUSSION
Bluetooth-enabled Devices: Ensure all devices you want to control are Bluetooth
compatible. This includes lights, switches, locks, sensors, etc. Bluetooth
Gateway/Hub: Acts as a bridge between your Bluetooth devices and your
smartphone or central control unit. It translates Bluetooth signals into commands
that other smart home devices can understand. Smartphone or Tablet: Your
smartphone serves as the control center for your Bluetooth home automation
system. Make sure it's compatible with the necessary apps for managing your
devices. Bluetooth Range Extenders: Depending on the size of your home, you
might need range extenders to ensure reliable communication between devices and
the gateway. Power Supply: Some devices may require constant power, so ensure
you have an appropriate power supply setup. Security Features: Look for devices
with strong encryption protocols to protect your home network from unauthorized
access. Compatibility: Check compatibility with other smart home systems you
may already have, or plan to integrate in the future. Installation and Setup:
Consider ease of installation and setup for each device, especially if you're not
tech-savvy. Budget: Finally, consider your budget. While Bluetooth-based systems
can be more affordable upfront, factor in any ongoing costs for additional devices
or subscriptions. Bluetooth-based home automation systems leverage Bluetooth
tech.
13
CHAPTER XI
ADVANTAGES / DISADVANTAGES
Advantages:
* Low Power Consumption
* Cost Effective
* Security
* Ease to set up
* Offline Operation
Disadvantages:
* Limited Range
* Compatibility Issues
* Device Limitations
* Dependency on Mobile Devices
14
CHAPTER XII
CONCLUSION
In conclusion, Bluetooth-based home automation offers a seamless and convenient
way to control various devices within the home environment. With its wireless
connectivity and compatibility with a wide range of gadgets, it enhances comfort,
efficiency, and security. By allowing users to remotely manage lighting,
temperature, entertainment systems, and security features through smartphone apps
or voice commands, Bluetooth automation simplifies daily routines and enhances
the overall living experience. As technology continues to advance, integrating
Bluetooth automation into homes promises to further streamline tasks and optimize
energy consumption, making homes smarter and more responsive to our needs.
15
REFERENCES
NAME OF
YEAR
SL.NO. TITLE JOURNAL/PUBLICATION AUTHOR
16
CHAPTER XIII
LIST OF MODELS
CARPENTARY:
SLIDING DOOR
WOODEN WINDOW
WHEEL CHAIR
CRANK AND SLOTTED LINK
ELECTRONICS:
POWER SUPPLY BOARD
EMERGENCY LIGHT
RELAY BOARD
MACHINE SHOP:
MACHINE VICE
BOLT AND NUT ASSEMBLY
SIMPLE AND COMPOUND GEAR TRAIN
17
MODEL 1
CARPENTRY: SLIDING DOOR
AIM: The aim of this laboratory exercise is likely manufacture a wooden window
using wood techniques.
APPARATUS: Wood, Sandpaper, Saw, Measuring tape, Drill, Screws, Sealant.
PROCEDURE:
Design and measure: Sketch and measure window dimensions, accounting for
frame and glass (if applicable). Cut the wood: Use saw to cut frame pieces based
on measurements, ensuring square cuts. Sand the wood: Smooth all surfaces with
sandpaper for a clean finish.
Assemble the frame: Drill holes and screw pieces together to create the window
frame. Seal the frame: Apply sealant to joints for weather resistance. Inspect and
finish: Check for gaps, leaks, or unevenness. Apply paint or varnish (optional).
Install the window. Ensure proper fit and secure the window.
18
DIAGRAM:
19
MODEL 2
ELECTRONICS: RELAY BOARD
Aim: To fabricate relay board to control various apparatus like motor, lamp, etc.,
Materials required:
1.Dot board (2x2) square inch
2. Digital multi meter (DMM) -
3.Soldering lead -
4.Soldering paste -
5.Soldering iron 230v,20watts
Components required
1. Relay 12volts DC PCB type
2.Switch 2pin
3.Battery 9volts
4.Lamp 9volts
5.Wires
Procedure:
1. Take the dot board and fix all the components as per circuit diagram.
2. Solder all the components properly and make sure you are soldering on a correct
soldering side of the dot board.
3. After soldering it can be seen that the circuit is made as per the diagram and
20
4. Solder the battery clip wires to the input side of dot board and verify the relay
output.
5. Using digital multi meter, in continuity mode, Test for continuity of tracks
and short circuit.
6. By switching ON/OFF position, you can control l
Diagram:
21
MODEL 3
MACHINE SHOP: Bolt and Nut Assembly
Aim: To prepare the job as per the Bolt and nut assembly specifications provided
Machine Tools use: Lathe Machine
List of tools:
1. Steel rule,
2. Outside calliper,
3. Vernier callipers,
4. Flat smooth file,
5. Single point cutting tool,
6. Center drill bit,
7. Threading tool,
8. Parting tool.
Materials Used:
1.Mild steel Bar
List of Operations:
* Cutting,
* Facing,
* Plain turning,
* Taper turning,
* Knurling,
* Threading,
* charm ferring,
Procedure
Cut hexagonal material to length, with allowance for facing.
22
Face one end in the Centre Lathe to 90 mm length overall. Centre Drill one end
for the live centre.4. Hold the hexagonal bar in the 3jaw chuck by around 5-8 mm
with the other end held by the live centre. Turn the 12 mm diameter for the thread
x 80 mm long – measure with the micro meter, size to finish at 12 mm minus 0.05
– 0.10. Adjust the tool and clean up the corner for the head of the bolt. Chamfer the
12 diameter end at 45 degrees x 2 mm. Hold the 12 diameter in the chuck and
chamfer the head at 45degrees.
Diagram:
Result: Thus to prepare the job as per bolt and nut assembly specifications
provided creative successfully.
23
VEL TECH RANGARAJAN DR. SAGUNTHALA R&D
T. Rekha 23UEEE0045
G. Divya 23UEEE0051
P. Divyanjali 23UEEE0035
JAWA 23UEEE0053
MOHANAD 23UEEE0056