git-svn-id: http://moon:8086/svn/projects/HendiControl@381 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
2020-04-20 15:57:23 +00:00
parent 16b77f0a17
commit 39af4d962c
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -8,7 +8,6 @@ class AStirrer(abc.ABC):
return ""
def __init__(self, dt):
self.log("Create")
self.dt = dt
self.speed = 0
self.cycleTime = 1
+1 -1
View File
@@ -150,7 +150,7 @@ class HendiCtrl():
return self.cmd("R" + str(int(enable)))
def isRemoteEnable(self):
return self.cmd("R?")
return '1' in self.cmd("R?")
def setPowerDigits(self, power_digits):
return self.cmd("P" + str(power_digits))