Python Forum
Show pressure data in a nice graphical way? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Show pressure data in a nice graphical way? (/thread-26916.html)



Show pressure data in a nice graphical way? - EmG - May-18-2020

Hi everyone,

I want to read some pressure data over a serial connection but then I need the data shown in a "nice graphical way" like a graph. I'm not very good in programming so an easy but good looking gui would be nice. Is there someone who can help me with this? Are there some pre-defined gui elements available that can do what I need?

Wishes,
Em


RE: Show pressure data in a nice graphical way? - DPaul - May-18-2020

matplotlib will produce a(ny) graph, almost without effort.

Paul


RE: Show pressure data in a nice graphical way? - EmG - May-19-2020

This lib can show the changing data? I mean, the pressure read out will happen all the time and not only once in a while and therefore I need a visualisation for the changing data over time.


RE: Show pressure data in a nice graphical way? - DPaul - May-19-2020

Yep.

https://www.youtube.com/watch?v=Ercd-Ip5PfQ

Paul