Skip to content

This is the code designed for our Mechatronics Engineering Capstone Project, a Line Following Robot.

Notifications You must be signed in to change notification settings

CollinCodez/Bot-Go-Burr-Line-Following-Robot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bot Go Burr Line Following Robot Code

This is the code designed for our Mechatronics Engineering Capstone Project, a Line Following Robot.

Features

Some nice features about our implementation include:

  • A wireless web interface to control the robot, allowing for live monitoring and tuning of PID constants.
  • A few #define based configuration options, to easily remove some parts of the code or change running modes for the code. These included:
    • SERIAL_ENABLED - Setting to 0 will remove all serial printing lines from the code
    • NO_WIRELESS - Setting to 1 will remove all wireless functionality from the code and greatly simplify the startup process. This will make the bot automatically begin calibration on power up, then start the main control loop, with no wireless functionality at all. This was added for reliability in case we were having issues with connectivity to the web interface, and reduced the number of tasks running on the ESP32.
    • ENABLE_EDF - Setting to 0 removes all ducted fan functionality from the code, setting it to 1 will use the DShotRMT library to control the ducted fan, and setting it to 2 will instead use an ESC library that utilizes the servo-like PWM control method (This was tested, but we did not have success with getting this library to work).
    • HALF_SENSORS - Setting this to 1 will make the robot use only every-other sensor, making the sensor act like an 8mm spaced, 8 sensor array. This was tested some for potentially faster and more reliable readings of the sensor, to allow for faster loop times and better control of the robot.
  • The addition of a Proportional2 term in the PID control. This allows for hard changes near the ends of the sensor, while allowing the bot to have a sort of deadzone when going straight.
  • The ability to wirelessly flash new firmware onto the robot, without having to plug it into the computer.

Resources

A number of different guides and libraries were used to make this project possible

  • Rui Santos's numerous ESP32 tutorials
    • These were EXTREMELY helpful for the development of the web interface, along with numerous other aspects of working with an ESP32.
  • ESPAsyncWebServer
    • Easy way to implement WebSockets for simple communication between the bot and the web interface, while also not interrupting the main control loop's code
  • ElegantOTA
    • Extremely simple way to add the ability to wirelessly update the firmware on the robot (requiring only 2 lines of code to be added), while also simply piggybacking on the already implemented ESPAsyncWebServer and adding minimal overhead.
  • ArduinoJSON
    • Simple to use JSON library that is much more more efficient than the "official" Arduino_JSON library
  • Pololu's QTRSensors Library
  • Carbon225's ESP32 DSHOT Library
    • Easy to use, effective DSHOT library for the ESP32, which takes advantage of the RMT Channel outputs of the ESP32, reducing the load on the processor. This was used for the control of our ducted fan.

About

This is the code designed for our Mechatronics Engineering Capstone Project, a Line Following Robot.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published