6 lines
186 B
Python
6 lines
186 B
Python
class AnalogInput(ReadonlyRegisterBase):
|
|
def doRead(self):
|
|
return camtool.getValue("gr_y_fit_offset")
|
|
|
|
add_device(AnalogInput("tst"), True)
|
|
tst.setPolling(10) |