good day sirs. i have a small program that reads and processes data via serial port. these data represent an airplane/vehicle’s attitude/tilt. can you suggest any python libraries that will enable me to create graphics that will take the said input and move/tilt accordingly? the simpler the library, the better. forgive me im still a python noob
Share
VPython is the perfect tool for this. It’s super quick and easy to make small 3D interactive moving scenes. For example, you could easily plot an arrow or two, and update them continuously with your data.
(Of course, use PySerial, for reading from the serial port…)