Automation Project Report Mukongo Derick Final
Automation Project Report Mukongo Derick Final
By
Mukongo Derick
May 2025
Abstract
This project report explores the design and implementation of an automated electrical
system aimed at increasing efficiency, reducing human intervention, and enhancing
safety in electrical applications. Automation in electrical systems leverages technologies
such as microcontrollers, sensors, relays, and programmable logic controllers to perform
tasks automatically. This project involved the development of an automated control
system for lighting and appliances, demonstrating the application of embedded systems
and sensor technologies. The methodology includes designing circuit diagrams, selecting
appropriate components, coding for microcontroller operation, and testing the system.
Results showed a significant reduction in energy usage and faster response times. The
project concludes with recommendations for future enhancements, including wireless
control and integration with IoT.
Acknowledgment
I would like to express my sincere gratitude to my supervisor and instructors at Musakasa
Technical Training Institute for their guidance and support throughout this project.
Special thanks go to my classmates and family for their encouragement and assistance.
This project would not have been possible without the resources and knowledge provided
by the Electrical Engineering Department.
Declaration
I, Mukongo Derick, hereby declare that this project report is my original work and has
not been submitted to any other institution for academic credit. All sources of information
have been duly acknowledged.
Signed: _____________________
Date: _______________________
Table of Contents
Abstract .......................................................................................... i
Acknowledgment ........................................................................... ii
1. Introduction ................................................................................ 1
3. Methodology ............................................................................... 8
8. References .................................................................................. 28
9. Appendices .................................................................................. 30
List of Figures and Tables
Figure 1: Block Diagram of the Automated System .................................................. 16
The scope of this project includes the use of sensors, microcontrollers (Arduino), relays,
and actuators to create a functioning system capable of performing tasks such as
automatically switching lights on/off based on occupancy and time of day. The
significance lies in reducing manual labor, preventing electrical hazards, and enhancing
energy efficiency.
2. Literature Review
Automation in electrical systems has evolved rapidly due to advancements in electronics
and computing. Various studies highlight the benefits of automation in industrial and
residential settings. For instance, smart home technologies employ automation to manage
lighting, heating, and security systems efficiently.
Key findings from previous works suggest that integrating sensors (motion, light,
temperature) with control algorithms results in highly efficient systems. Challenges noted
include system complexity, maintenance, and cost of implementation in large-scale
environments.
3. Methodology
The methodology for this project followed a structured approach to system design,
implementation, and testing. The key steps include:
Each stage involved iterations to refine the system based on observations and testing
outcomes.
4. Components Used
The following components were used in the project:
5. Circuit Diagrams
This section includes the circuit diagrams designed for the automated system. The
diagrams were created using circuit design software such as Fritzing and Proteus. Key
components include the Arduino Uno, PIR sensor, LDR, relay module, and a light bulb.
Figure 1 below shows the block diagram of the system, highlighting the interaction
between sensors, microcontroller, and actuators.
Figure 2 represents the full wiring schematic, including connections to power supply and
load devices.
6. Results and Discussions
The automated system was successfully implemented and tested in a controlled
environment. The following results were observed:
Power consumption was monitored before and after automation. It was found that
automated control led to approximately 30% energy savings over a 24-hour period.
Challenges faced included sensor sensitivity calibration and occasional false triggers due
to environmental noise. These were mitigated through code refinement and component
shielding.
With these additions, the system could become a more robust and user-friendly smart
home solution.
8. References
1. Muhammad Ali Mazidi, ‘The 8051 Microcontroller and Embedded Systems’, Pearson
Education, 2011.
2. John Iovine, ‘Arduino Microcontroller Processing for Everyone’, McGraw-Hill, 2013.
3. Bhattacharya S.K., ‘Basic Electrical and Electronics Engineering’, Pearson Education,
2011.
4. Datasheets of Arduino Uno, PIR Sensor, LDR, and Relay Modules.
5. Online articles and tutorials from www.instructables.com and www.circuitdigest.com.
9. Appendices
Appendix A: Arduino Source Code
void setup() {
pinMode(pirPin, INPUT);
pinMode(relayPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
int ldrStatus = analogRead(ldrPin);
int pirStatus = digitalRead(pirPin);