andyxiao000

ESE 5190 Final Project: Smart Trash Can

Final Project Report

1. Video

Link to Video

2. Images

3. Results

Software Requirements Specification (SRS)

3.1 Overview

From a software perspective, this project implements an automated control system for a smart trash can, including distance detection triggering, garbage level monitoring, temperature display, and other functionalities. The system uses the ATmega328PB microcontroller to coordinate data collection from various sensor modules and control outputs, while displaying relevant information through an LCD screen.

3.2 Users

The target users of this project include:

3.3 Definitions, Abbreviations

Term Definition
LCD Liquid Crystal Display
IR Infrared
PWM Pulse Width Modulation
I2C Inter-Integrated Circuit
SRS Software Requirements Specification
UI User Interface

3.4 Functionality

SRS 01 - Distance Detection Function
SRS 02 - Garbage Level Detection Function
SRS 03 - Temperature Monitoring Function
SRS 04 - LCD Display Function
SRS 05 - Servo Control Function

These functional requirements ensure stable system operation and provide users with a convenient experience. Each function module has clear execution cycles and trigger conditions, guaranteeing timely and reliable system response.

Hardware Requirements Specification (HRS)

4.1 Overview

From a hardware perspective, this project builds a desktop smart trash can system that integrates multiple sensors and actuators. The system is based on the ATmega328PB microcontroller platform, incorporating ultrasonic distance sensing, IR level detection, temperature monitoring, LCD display, and servo motor control for automated operation.

4.2 Definitions, Abbreviations

Term Definition
MCU Microcontroller Unit
GPIO General Purpose Input/Output
VCC Voltage Common Collector (Power Supply)
GND Ground
PCB Printed Circuit Board
ADC Analog-to-Digital Converter

4.3 Functionality

HRS 01 - Core Processing Unit
HRS 02 - Distance Detection Module
HRS 03 - Garbage Level Detection
HRS 04 - Temperature Sensing
HRS 05 - Display Unit
HRS 06 - Actuator Control
HRS 07 - Power Requirements

These hardware specifications ensure all components are compatible and the system can perform its intended functions reliably and efficiently.

5. Conclusion

This project provided valuable insights into integrating hardware and software in an embedded system. We gained a deeper understanding of using peripherals like timers, interrupts, and communication protocols (UART) on the ATmega328PB microcontroller. It also reinforced the importance of modular code design, enabling easier debugging and scalability.

The ultrasonic sensor successfully measured distances, and the servo motor dynamically adjusted based on those measurements. The system performed reliably in real-time. The modular structure of the code (separating sensor, servo, and communication logic) ensured clear responsibilities for each part, simplifying testing and troubleshooting. Using PlatformIO streamlined the development process, from compiling to debugging, making the workflow efficient.

Combining multiple subsystems (sensor, actuator, UART) into a cohesive and functional system. The system responded quickly to changes in the environment, demonstrating effective real-time control. Leveraging PlatformIO’s debugging tools, I was able to address issues systematically, ensuring robust functionality.

What Could Have Been Done Differently: A more compact and shielded layout could have reduced signal noise and interference between components; Adding low-power modes and more efficient power regulation could have improved the system’s energy efficiency; Simulating different environmental conditions, such as noisy signals or varying object reflectivity, could have made the system more robust.

Unexpected Obstacles: High-frequency noise occasionally interfered with ultrasonic sensor readings, requiring additional filtering; Fine-tuning the PWM frequency and ultrasonic signal timing took longer than anticipated due to hardware constraints.

Next Steps for This Project:

  1. Integrate additional sensors (e.g., infrared or laser) to enhance measurement accuracy and support diverse applications. Add a display to visualize distance data locally.
  2. Introduce power-saving modes for both the microcontroller and peripherals to optimize battery usage.
  3. Implement Bluetooth or Wi-Fi modules for remote monitoring and control, enabling IoT applications.
  4. Test the system under varied environmental conditions, including outdoor settings, to ensure reliability.
  5. Incorporate filtering for smoother measurements and servo control logic for finer adjustments.