Fix
This commit is contained in:
@@ -17,7 +17,7 @@ class TSSOP16(HasIO, Readable):
|
||||
value = Parameter('value', FloatRange(unit='pF'), readonly=True)
|
||||
pollinterval = Parameter(default=0.1)
|
||||
|
||||
def read_off_cvt(self, recursive_layer=0):
|
||||
def custom_read_off_cvt(self, recursive_layer=0):
|
||||
try:
|
||||
l = self.communicate('readCVT')
|
||||
vals = l.split(',')
|
||||
@@ -36,5 +36,5 @@ class TSSOP16(HasIO, Readable):
|
||||
return self.read_off_cvt(recursive_layer+1)
|
||||
|
||||
def read_value(self):
|
||||
res = self.read_off_cvt()
|
||||
res = self.custom_read_off_cvt()
|
||||
return res
|
||||
Reference in New Issue
Block a user