Real-Time Python Data Visualization
This project is the PC software that goes to this project, a racecar telemetry system. The goal is to take data from the PC/laptop's COM port and display it in real time for viewing in the pit lane at an endurance race. I considered doing this project in MATLAB as it is good at handling arrays of data like what this project requires, and I am more capable in MATLAB than in Python. I chose to use Python so that I could learn more about it and so I could use the program on any computer without needing a license. This project taught me mainly about Python and Object-Oriented programming. Visualization window produced (car not connected) To start, I knew that I wanted to have a rolling graph of the last ~30 seconds of data received as well as a table with other values that need not be graphed. Like mentioned in the hardware part of the project, displaying the car's fuel consumption is the main goal with added benefit from also displaying other car variables as well. The car cur...