NSYNC_project_website

NSYNC-Project-Website

1. Abstract

1.1 Overview

Swarm analysis investigates the collaborative dynamics of multiple autonomous agents working collectively to achieve shared objectives. Rooted in natural systems such as ant colonies, bee hives, and bird flocks, the field explores how simple, local interactions among individual agents give rise to complex, efficient, and adaptive group behaviors. This decentralized approach, wherein agents follow straightforward rules and interact locally, enables swarms to adapt to environmental changes and maintain functionality even when individual components fail. These principles ensure robustness, resilience, and adaptability in both natural and engineered systems, particularly in robotics.

Drawing inspiration from biological and ecological systems, swarm analysis examines how social insects and animals exhibit sophisticated group behaviors that allow them to perform critical tasks like foraging, building, and protection. Ants, for instance, employ pheromone trails for efficient resource discovery, while bees utilize the "waggle dance" for directing hives toward nectar sources. Similarly, flocking birds exhibit coordinated movements that enhance predator evasion and energy conservation. These natural systems demonstrate the power of decentralized, self-organized behaviors, where simple individual actions culminate in achieving complex group objectives, offering a model for robust, adaptive, and scalable systems.

1.2 Swarm analysis in robotics and warehouse application

Swarm robotics leverages principles inspired by nature to enable groups of autonomous robots to perform tasks collaboratively using simple rules and local interactions. This decentralized approach ensures dynamic task allocation, scalability, and robust adaptability to failures or environmental changes. By minimizing human intervention, swarm systems enhance efficiency, resilience, and sustainability in complex operational settings.

This project implements swarm robotics in a warehouse environment using a two-robot system. Each robot, powered by an ATmega328P microcontroller, is coordinated through an Xbee-based central controller that ensures synchronization and prevents task overlaps. The robots navigate, allocate tasks, and optimize energy usage, triggering alerts when batteries are low. This showcases the potential of scalable, efficient, and resilient robotic systems to improve warehouse automation and overall productivity through collaboration and energy-aware operations.

2. Motivation

The rapid expansion of e-commerce and logistics industries has driven a significant demand for efficient and automated warehouse solutions. To meet rising consumer expectations and navigate the complexities of modern supply chains, businesses increasingly rely on automation to streamline operations and reduce costs.

Swarm robotics presents an innovative approach to enhancing warehouse efficiency by reducing human intervention and improving overall operational effectiveness. The collaborative capabilities of swarms enable optimized task distribution and resource utilization, facilitating seamless workflows. By harnessing swarm intelligence, warehouses benefit from task allocation, accelerated decision-making, and improved scalability, achieving enhanced performance and efficient resource management.

3. Goals

The goals for this project have been revised to reflect updates in the hardware and functionality. Initially, the project intended to use ESP32 and ATmega328PB microcontrollers; however, the implementation now employs Pololu 3pi robots equipped with ATmega328P microcontrollers. The revised goals are as follows:

  1. Wireless Control: Enable seamless control of the robots using XBee RF modules for wireless communication.
  2. Synchronized Bot Operations: Develop a two-bot system capable of executing synchronized tasks based on user inputs, including moving forward, backward, rotation, or line-following.
  3. Battery Monitoring: Integrate real-time monitoring of each bot’s battery level to ensure operational efficiency.
  4. Low Battery Alert and Task Reallocation: Implement a system where a buzzer alerts when a bot’s battery is low, causing the bot to stop its wheels after a few seconds and reassign its tasks to the other bot to maintain uninterrupted operation.

4. Block Diagram

alt text

5. Software Requirements Specifications

The software system is designed to facilitate efficient wireless communication, monitoring, and task management between XBee modules, Pololu 3pi robots, and ATmega328P microcontrollers.

SRS Objective Specifications Expected Outcome Result
SRS 1 Create a mesh network between XBee Coordinator and XBee Endpoints
  • Configure 1 XBee Coordinator and 2 XBee End Devices as routers.
  • Set all devices to the same PAN ID for communication.
The Coordinator successfully sends commands to the End Devices. Pass: The Coordinator successfully communicated with the End Devices, achieving the intended functionality.
SRS 2 Wirelessly control the Pololu 3pi bots through the serial monitor via XBee Coordinator.
  • Command 1: Control Pololu Robot 1 to perform its task (rotate).
  • Command 2: Control Pololu Robot 2 to perform its task (rotate).
  • Ignore other commands.
  • Robot 1 rotates upon receiving Command 1.
  • Robot 2 rotates upon receiving Command 2.
  • Other commands have no effect.
Pass: Robot 1 and Robot 2 performed their tasks correctly, while other commands had no effect.
SRS 3 Use buttons on ATmega328PB microcontroller to wirelessly control Pololu 3pi bots via XBee network.
  • Button 1: Send a command to Robot 1 to perform its task.
  • Button 2: Send a command to Robot 2 to perform its task.
  • Ensure communication between ATmega328PB and Pololu 3pi bots over XBee network.
  • Robot 1 performs its task when Button 1 is pressed.
  • Robot 2 performs its task when Button 2 is pressed.
Not Completed: Baud rate mismatch between ATmega328PB (16 MHz) and Pololu 3pi bots (20 MHz). XBee communication at 115200 baud was unsuccessful.

Process of Configuring Xbee Modules and Wireless Communication

To achieve seamless wireless communication between the two Pololu 3pi bots and the laptop, we utilized the XBee S2C modules. The system was configured with one module as the Coordinator and the other two modules as Routers, following the process described below.

Configuration Process:

  1. Hardware Setup:
    • The XBee S2C modules were connected to USB XBee adapters and linked to the laptop via USB ports. XCTU software was used to configure the modules.
    • The Coordinator and Router roles were assigned to the modules using XCTU.

  2. Coordinator Configuration:
    The first module was set as the Coordinator with the following parameters:
    • PAN ID: 1234 (common network ID for all modules).
    • CE (Coordinator Enable): Enabled.
    • Destination Address DL: Set to FFFF (broadcast mode to communicate with all devices in the PAN ID).
    • The configuration was saved by clicking the “Write” button in XCTU.
  3. Router Configuration: The other two modules were configured as Routers with the following parameters:
    • PAN ID: 1234 (same as the Coordinator).
    • CE (Coordinator Enable): Disabled.
    • Destination Address DL: Defaulted to 0 (addressing the Coordinator).
    • Configuration was saved for each module.

  4. Testing Communication:

    • Two instances of XCTU software were opened on the laptop, one for the Coordinator and the other for a Router.
    • The Terminal mode in XCTU was used to test communication between the devices. Messages typed in one module’s terminal were successfully transmitted and displayed on the other module’s terminal, confirming proper configuration and functionality.
    • The communication was reliable, with transmitted messages appearing in blue and received messages in red, as seen in the attached screenshots.

Below screenshots show the configuration of xbee modules:

alt text

alt text

6. Hardware Requirements

HRS Objective Specifications Expected Outcome Result
HRS 1 Configuring the Pololu 3pi bot Flash a test code using avrdude via Pololu USB AVR programmer v2 to check the bot's functionality. Flash the .hex file at 115200 baud and verify proper functionality of the Pololu 3pi bot. Pass: The .hex file was successfully flashed, and the bot worked as expected.
HRS 2 Configuring the Pololu 3pi bot LEDs and Buzzers Test the working of LEDs and buzzers for integration with further implementations. Successfully blink LEDs and ring the buzzer with a square wave pulse. Pass: LEDs blinked and the buzzer rang as expected.
HRS 3 Configure the motors Control the motors to make the bot rotate in a specific direction. Make the bot rotate by configuring the left and right motors to move in opposite directions. Pass: The bot rotated as intended.
HRS 4 Configuring the QTR sensors Test the QTR IR sensors by toggling LEDs when a black line is detected. Toggle LEDs based on sensor readings: stop the red LED for right sensors and green LED for left sensors. Pass: LEDs toggled as expected based on sensor readings.
HRS 5 Configuring the XBee modules with the Pololu 3pi bot Connect XBee routers to Pololu 3pi bots and send a simple print message to the XBee Coordinator. Establish communication to display "Hello from pololu 3pi" on the serial monitor. Pass: Communication was established and the message was successfully displayed via UART.
HRS 6 Controlling the movement of the bots by giving controls in the serial monitor Allow user to enter commands (1 for Bot 1, 2 for Bot 2) to control motor rotation and LED blinking. Bot 1 rotates on command 1, and Bot 2 rotates on command 2, with LED feedback. Pass: Bots rotated and LEDs blinked as intended based on user input.
HRS 7 Send battery monitoring details from Pololu 3pi bot to the XBee Coordinator Read battery voltage using ADC6 on the Pololu 3pi bot and transmit data to the XBee Coordinator. Display battery voltage in millivolts on the XBee Coordinator serial monitor. Pass: Battery voltage was successfully transmitted and displayed.
HRS 8 Try configuring a smart battery monitoring system Signal low battery with a buzzer and stop the motors when voltage falls below 4000mV. Ring buzzer for 5 seconds, stop motors, blink RED LED, and display a low battery message on the serial monitor. Pass: System behaved as expected under low battery conditions.
HRS 9 Try implementing line following as part of task demonstration Integrate QTR sensors, motors, and push buttons to enable line-following functionality. Bot follows a line after configuration via button presses. Partially Achieved: Motors and sensors were configured, but calibration issues affected line-following performance.

8. Main Issues Faced

8.1 Baud Rate Mismatch

During the configuration and testing of the XBee communication with the ATmega328P microcontroller, we encountered a significant issue with the baud rate. Despite configuring the system to operate at a baud rate of 115200, we observed an error in data transmission. The data received was inconsistent and appeared to be sent at approximately 140000 baud, leading to about 20% error in UART communication.

Root Cause:

After thorough debugging, we realized that the ATmega328P microcontroller was operating at a 20 MHz clock frequency instead of the expected 16 MHz. The incorrect assumption of the clock frequency had resulted in inaccurate prescaler calculations for the UART baud rate, causing the mismatch.

Resolution

Prescaler Adjustment: We recalculated the prescaler value for the UART baud rate based on the 20 MHz clock frequency, ensuring accurate baud rate settings.

• Verification with Saleae Logic Analyzer: We used a Saleae Logic Analyzer to analyze the transmitted and received UART signals. The logic analyzer allowed us to confirm the actual baud rate being transmitted and verify that the adjusted prescaler correctly aligned the transmission rate with the configured baud rate of 115200.

9. Power Management

alt text

• The power management system in the 3pi robot is a sophisticated design that ensures optimal performance for the device, even as battery voltage fluctuates during operation. The system addresses the challenge of inconsistent battery voltage from four AAA cells, which can range between 3.5 V and 5.5 V (or even up to 6 V for alkaline batteries). This variability makes direct voltage regulation to 5 V impractical. To overcome this, the 3pi employs a dual-regulation approach, utilizing both a switching regulator and a linear regulator.

• First, the switching regulator boosts the battery voltage to a stable 9.25 V (Vboost), which is used to power the motors and IR LEDs in the line sensors. Then, a linear regulator reduces Vboost to 5 V (VCC), supplying the microcontroller and digital circuitry. This dual-regulation method provides several advantages. The motors benefit from higher voltage and, consequently, more power without increased current demand, enabling consistent performance regardless of battery depletion. Additionally, the regulated voltage ensures that motor speeds remain constant, simplifying programming tasks such as timed turns. Furthermore, the higher voltage enables the IR LEDs to be powered in series, minimizing power consumption.

• The system also incorporates a voltage monitoring circuit to help track battery status. This is achieved using a voltage divider, which scales the battery voltage to a level safely below the microcontroller's 5 V maximum analog input. This scaled voltage is fed to an ADC input and converted into the actual battery voltage using a simple formula. We monitored the battery voltage by a function, read_battery_millivolts_3pi(), that automates this process by averaging ten ADC samples and returning the battery voltage in millivolts.

alt text

• In summary, the 3pi’s power management system ensures maximum performance until the battery is fully drained, offering regulated voltage for reliable operation of all components while monitoring battery health for proactive power management.

10. Detailed Explaination of Hardware Implementation

10.1 Motors

The Pololu 3pi robot uses brushed DC motors with a gear ratio of 30:1, which are ideal for the lightweight and agile design of the 3pi robot. The details are as follows:

Motor Design and Characteristics:

•Brushed DC Motor: The motors operate with permanent magnets and electromagnetic coils, offering a reliable mechanism for the small and efficient Pololu 3pi.

Key Specifications:

• Free-Running Speed: 700 rpm (rotations per minute) without any load.
• Free-Running Current: 60 mA, ensuring low power consumption during operation.
• Stall Torque: 6 oz-in (ounce-inches), providing sufficient force for the robot to overcome minor obstacles.
• Stall Current: 540 mA, which the motor draws under maximum load conditions.

Gear Ratio and Torque:

• A 30:1 gear ratio is employed, which reduces the speed and increases the torque by a factor of 30. This is crucial for tasks like:
Precise movement during line-following.
Overcoming resistance from friction or uneven surfaces.
•The gear ratio ensures that even though the motor spins rapidly, the robot achieves smooth and controlled movements. Differential Drive System:
•Each wheel of the 3pi robot is connected to an independent motor, enabling tank-style movement:
Both motors moving forward at the same speed: The robot moves straight.
One motor faster than the other: The robot turns.
Motors moving in opposite directions: The robot spins in place.
•This setup allows the robot to make sharp turns and maintain a steady trajectory along the line.

PWM Control:
•Pulse Width Modulation (PWM): The motor speed is controlled by varying the duty cycle of the PWM signal.
•The onboard TB6612FNG motor driver chip generates PWM signals linked to the Timer2 in the ATmega328 microcontroller.
•By changing the PWM duty cycle, the motors achieve:
Smooth acceleration and deceleration: Gradual adjustments in speed ensure stability.
Precise directional control: The robot follows curves with minimal overshooting.

10.2 Sensors

The Pololu 3pi uses five reflectance sensors mounted underneath the chassis for line detection. These sensors are critical for determining the position of the robot on a line and ensuring accurate navigation. Here’s a detailed breakdown:

Reflectance Sensor Design:
•Phototransistor-Based Sensors: The sensors use phototransistors to measure reflected light intensity. Bright surfaces reflect more light, while dark surfaces reflect less.

•The key components include:
Infrared Emitter: Sends light to the surface.
Phototransistor Detector: Measures the amount of reflected infrared light.

Operation of Reflectance Sensors:

•The reflectance sensors are connected to the microcontroller’s digital inputs, such as PC0 (Port C).
•A capacitor discharge mechanism is used:
The sensor pin is charged to 5V and then set to an input.
The capacitor discharges through the phototransistor, and the rate of discharge depends on the reflectance.
The microcontroller measures the time taken for the pin to drop below a certain threshold voltage.

•Output Range:
White surfaces cause rapid discharge and low sensor values.
Black surfaces cause slow discharge and high sensor values.

Sensor Layout and Coverage:
•Five sensors are arranged in a row beneath the robot, ensuring wide coverage of the line.
•This layout allows the robot to detect curves and edges effectively, maintaining its trajectory even in complex paths.

10.3 Mircrocontroller and H-Bridge Motor Driver

Microcontroller: ATmega328
•The ATmega328P microcontroller handles motor control, sensor data processing, and high-level decision-making.

•Timers and Ports Used:
Timer2: Generates PWM signals for motor speed control.
Port C (PC0-PC4): Interfaces with the reflectance sensors.

H-Bridge Motor Driver:
•The onboard TB6612FNG motor driver chip uses H-Bridge circuits to control motor direction.
•Directional Logic:
Motors are controlled by toggling the logic levels of PD5, PD6 (Motor 1) and PD3, PB3 (Motor 2).
Example configurations:
PD5 = 1, PD6 = 0: Motor 1 moves forward.
PD5 = 0, PD6 = 1: Motor 1 reverses.
•Coasting and Braking:
Motors can be set to coast (no movement) or brake (immediate stop) by configuring the H-Bridge logic.

Buttons and Additional Inputs:

•PB4 (Button B): Used for toggling between starting and stopping the robot.
The button is connected with a pull-up resistor to avoid floating input values.
Pressing the button sets the corresponding input to logic low (0), triggering the desired functionality in the firmware.

11. Conclusion

Conclusion

This project successfully demonstrated the integration of hardware and software to create a robust system for controlling and monitoring Pololu 3pi robots using XBee wireless communication. The Hardware Requirement Specifications (HRS) and Software Requirement Specifications (SRS) provided a structured approach to achieving key objectives, including configuring the Pololu 3pi bots, establishing communication networks, testing key components such as LEDs, buzzers, motors, and QTR sensors, and implementing advanced functionalities like smart battery monitoring and partial line-following.

Key accomplishments include:

The project showcased a comprehensive understanding of microcontroller programming, communication protocols, and real-time system design. However, there were some challenges, such as baud rate mismatches between different microcontrollers and calibration issues with the line-following task, which provided valuable learning experiences.

Reflection: What Would You Have Done Differently?

Looking back, there are several improvements and enhancements that could have been made to elevate the project further:

  1. Alternative Robot Design: Instead of solely relying on the Pololu 3pi bots, creating a custom-built robot could have allowed for greater flexibility. For example, a small robot could have been designed to lift a lightweight box, introducing a new dimension to the tasks.

  2. Obstacle Avoidance Using Ultrasonic Sensors: Incorporating ultrasonic sensors could have facilitated obstacle avoidance functionality using the theremin concept, similar to car reverse parking systems. This would have been a valuable addition for real-world applications.

  3. Integration of Real-Time Clock Module: If the Pololu 3pi bots were to remain the core component, adding a real-time clock (RTC) module to synchronize the clocks of the Pololu 3pi bots (using ATmega328P) and the ATmega328PB (acting as a supervisor controller) could have enhanced task coordination and scheduling efficiency.

  4. Improved Line-Following Calibration: A deeper focus on calibrating the QTR sensors and refining the line-following algorithm could have resolved the challenges encountered during this task, leading to a more reliable performance.

These potential improvements highlight areas where creativity and technical depth could have further enriched the project. Overall, this project provided a solid foundation for exploring embedded systems, communication protocols, and multi-robot task execution, laying the groundwork for future advancements and innovations.

12. Video Implementations and Screenshots

alt text

alt text

Video link to final demo: Link

Link showing interfacing led and pushbuttons: Link

Link to showing working of buzzer and led blinking: Link

Link to video showing working of IR sesnosrs: Link

Link to video showing wirless communication between 2 xbees: Link

Link showing wireless communication from xbee to atmega: Link

Link showing wireless communication from atmega to xbee: Link

Link to a video showcasing the wireless control of the bot’s motors: Link

Link to a video showing Motor and QTR sensors working together (Facing Calibration Issues): Link

The Team

alt text

Acknowledgements

We would like to extend our heartfelt gratitude to Professor Nicholas McGill-Gardner for his mentorship, guidance, and encouragement throughout the course. His insights and support have been pivotal to our learning journey. We are also deeply thankful to Account Manager Haige Xu for his assistance and support in managing our course-related requirements. Additionally, we greatly appreciate the dedication and support of our Course TAs, Yadnik and Vishnu whose efforts have enriched our learning experience and made this journey a rewarding one.