My UCLA Mechanical Engineering Senior Capstone Project

Before I say anything else: Here is a video of everything working. Namely the main drive units, the hose aiming system, the camera aiming system, and the extinguisher linear actuator (and all of the behind-the-scenes wireless communication and logic). This is all being controlled on a webpage accessed on my laptop, hosted on the on-board raspberry pi.

Done over a ~5 month period, overlapping with internship work and classes….so please excuse the “unrefinement“ 😄

Fun fact: I used drone motors for the drive motors with no gear reduction thanks to the SimpleFOC library!

Overview:

For my UCLA capstone project, my team of 6 decided to make a firefighting robot/rover. Frankly, I felt that I have had a decent amount of experience with project-level CADing in Solidworks, so instead, I wanted to take on the things that I had little experience with. This included the software programming, electronics, actuators, and more that I will explain below.

As of this update (5/25/2024), things are going well but it doesn’t seem like we will have enough time to implement automatic fire extinguishing features as we initially hoped for, so for now, everything is manually controlled from a user inferface webpage on my laptop. I got some cool teammates to work with, but taking initiative for all of the non-CAD modeling things is proving to be time consuming, especially given that I am implementing these by myself and that I started off knowing nothing about it. And it turns out, I also had to do a fair bit of CAD and 3d printing anyway. BUT… it’s been pretty fun.

Also, NOTE: This is just a draft(ish) page for now, I will add more to this later!

Parts list (for my resposibilities at least. Will add a more comprehesive list later):

Power supply

  • 2500 mAh Samsung 18650 cells (x8, for a 4s2p configuration)

  • 4S Lithium Ion Battery BMS Board (off of Amazon/Aliexpress)

  • 300W Rated Buck Converters (x2, for 5V and 12V from the 4S battery)

To make it move

  • SunnySky 4004 300KV BLDC Motor (x2)

  • B-G431B-ESC1 Motor Driver Boards (x2, from ST Microelectronics)

  • Radial Magnets (x2)

  • as5048a Magnetic Sensors (x2)

To Give it Eyes

  • Raspberry Pi Cam V2

  • MLX90640 IR Thermal Camera

To Aim Cameras and the Fire Extinguisher Nozzle

  • Leaving this one up to the team…not decided on using steppers or servos…will update later

The Brainz of the Bot

  • Raspberry Pi 5: Runs the backend

    • Node.js server, Python GPIO control & Arduino communication script

  • …and the front end

    • HTML, CSS, Javascript

  • Arduino Uno R3: Seperate hardware for simplicity that sends the PWM signals to the motor drivers when told to do so by the Raspberry Pi

Miscellaneous

  • 5V USB A Fans: For cooling

  • Wires (for signals, power), connectors (XT30, Barrel Jacks, Bullet/Banana Plugs, USB)

Software

I will add flow charts, diagrams, and better explainations here later but in short:

I am using a mini-router on my PC to have my own Local Area Network.

All the user worries about is connecting to my mini-router and entering the known Raspberry Pi IP address into a web browser to be presented with a basic HTML page with a Node.js backend server, which I will call the Control Panel. Here, the user can use the keyboard to control the robot while viewing live video feed from the PiCam and the thermal camera. A Python script that uses OpenCV and Flask’s built-in server sends the video streams to a certain address on the LAN and the Control Panel knows to look for it there to display it.

When the user presses any command on the Control Panel, the Node.js script sends a command in the format of “{something, #}“, for example “{Forward, 1}“, and a corresponding Python script is on a loop listening for certain commands to send the proper signals, either to the Raspberry PI GPIO pins, or to the Arduino Uno over Serial communication. In the latter case, the Arduino is taking a command such as “let’s go forward“ or “Turn the camera left“, and then sends the corresponding PWM signals to the proper motor drivers that are connected through its GPIO pins.

This is a short version of what goes on behind the scenes, and I am getting sleepy now so I will finalize this once we complete out the robot! Bye for now. Zzz

Videos