python控制电源DP811A python控制电源电压 # coding: utf-8 import time, pyvisa, wexpect from datetime import datetime as dt, datetime OK = 0 ERROR = 1 class Wrapped: def __getattr__(self, name): return getattr(self.wrapped, name) def isnone(self): return self.wrapped is None class Visa...