Nov-05-2022, 07:08 PM
(Nov-05-2022, 11:54 AM)deanhystad Wrote: It is possible. Some packages, like pyqtgraph, are set up to work with many versions of Qt. They look at your installed packages to find which version of Qt is installed.
I think you can circumvent this by changing the import order in your file. Import PySide6 before import pyqtgraph. Change this:
to this:
12import
pyqtgraph
from
PySide6
import
QtCore, QtGui, QtWidgets
12from
PySide6
import
QtCore, QtGui, QtWidgets
import
pyqtgraph
BINGO!!! The code works now perfectly. No even single error. I still encounter issue with setting "potential" so it has to be hardware problem. Now I am heading to dissasemble all electronic parts to test everything and hopefully find a bad circuit.
Thank You so much for Your time!