I am interested to create a GUI for a data acquisition system (micro controller unit). I want to set a voltage at PV1 and measure the same voltage at A1 for checking purpose. The python script is given below:
# Establish the connection
import eyes17.eyes
p = eyes17.eyes.open()
# Setting the voltage at PV1
p.set_pv1(4)
# Read the voltage A1
VA1=p.get_voltage('A1')
print (VA1)
How can I create the GUI using PyQt5 and Qt Designer?