[WIP] fixes for gas10ka / varioxB

treat proxy for io correctly
This commit is contained in:
l_samenv
2024-06-10 10:11:03 +02:00
parent b1f9c74269
commit 67fa50a9e0
10 changed files with 855 additions and 59 deletions

View File

@ -28,6 +28,8 @@ from scipy.interpolate import splev, splrep # pylint: disable=import-error
from frappy.core import Attached, BoolType, Parameter, Readable, StringType, \
FloatRange, nopoll
from frappy_psi.convergence import HasConvergence
from frappy_psi.picontrol import PImixin
def linear(x):
@ -232,3 +234,7 @@ class Sensor(Readable):
@nopoll
def read_status(self):
return self._get_status(self.rawsensor.read_status())
class SoftPiLoop(HasConvergence, PImixin, Sensor):
pass