https://github.com/bancedev/lunagui
https://github.com/bancedev/lunagui
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bancedev/lunagui
- Owner: BanceDev
- Created: 2023-11-01T01:12:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T00:26:29.000Z (over 2 years ago)
- Last Synced: 2025-01-16T01:55:04.783Z (over 1 year ago)
- Language: Python
- Size: 140 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lunaGUI
User interface for the Ohio State University Lunabotics team driver station. The code is written in python using imgui for the user interface and ZeroMQ websockets for the networking communications.
## Launching the Program
The main.py file launches the driver station UI and the server, compile main.py in whatever tool you use to run python programs or cd into the folder directory and run the following command:
```
python main.py
```
## Dependencies
In order to compile and run this project you will need imgui, pygame, psutil, and ZeroMQ installed on your computer.
### Imgui
```
pip install imgui[full]
```
### Pygame
```
pip install pygame
```
### Psutil
```
pip install psutil
```
### ZeroMQ
```
pip install pyzmq
```