diff --git a/ilt1000.py b/ilt1000.py index fa9cc55..f96cb62 100755 --- a/ilt1000.py +++ b/ilt1000.py @@ -59,14 +59,10 @@ class CommandError(Error): # set5vbias # setwireless - -# configbackup -# configrestore +# setwflisten # setmodelname -# setwflisten - class ILT1000(object): @@ -382,6 +378,12 @@ class ILT1000(object): def GetIntegrate(self): return float(self._SendCommand('getintegrate')) + def BackupConfig(self): + self._SendCommandOrDie('configbackup') + + def RestoreConfig(self): + self._SendCommandOrDie('configrestore') + class _Row(object):