A web server GUI hosted by flask which can be used to control the robot in manual, semi-automatic, and automatic modes.
Go to file
2022-11-14 18:41:23 -05:00
static combined drops and made css better 2022-11-14 18:41:23 -05:00
templates combined drops and made css better 2022-11-14 18:41:23 -05:00
.gitignore Flask integrated lets go! 2022-10-15 14:47:18 -04:00
app.py combined drops and made css better 2022-11-14 18:41:23 -05:00
LICENSE Initial commit 2022-09-24 15:09:20 -04:00
README.md Woohoo! Manual control page is done! 2022-09-24 21:12:46 -04:00
tailwind.config.js Woohoo! Manual control page is done! 2022-09-24 21:12:46 -04:00

Robot GUI

A web server GUI hosted by flask which can be used to control the robot in manual, semi-automatic, and automatic modes. The web server is meant to run on a flask backend, but we currently just run it on vanilla HTML and CSS with no backend; we plan on integrating it with flask in the very near future.

Code Description

bare/ Files containing the actual vanilla server, with vanilla HTML and CSS code.

  • bare/index.html is the main HTML file of the server.
  • bare/style.css is the main CSS file of the server. Currently is just vanilla without tailwind framework.
  • All other files are images used in the server.

All of our other files are related to the flask backend, but do not contain any meaningful server code:

  • static/ contains placeholder CSS files to be integrated into the flask application.
  • templates/ contains placeholder HTML filess to be integrated into the flask application.
  • app.py is the flask application to be run. If backend were integrated the command to initiate the server is python app.py.
  • tailwind.config.js configures tailwind.

Setup and Run.

  1. Clone this repo
git clone https://github.com/PotentiaRobotics/robot-gui.git
  1. cd to bare/ directory
cd bare/
  1. Run live server on index.html or open index.html with web browser