We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc06cf4 commit 11f776eCopy full SHA for 11f776e
chamberconnectlibrary/watlowf4t.py
@@ -370,13 +370,13 @@ def get_cascade_pv(self, N):
370
def get_cascade_range(self, N):
371
self.__range_check(N, 1, self.cascades)
372
return {'max':self.client.read_holding_float(4036+(N-1)*200)[0],
373
- 'min':self.client.read_holding_float(4038+(N-1)*200)[0]}
+ 'min':self.client.read_holding_float(4034+(N-1)*200)[0]}
374
375
@exclusive
376
def set_cascade_range(self, N, value):
377
378
self.client.write_holding_float(4036+(N-1)*200, value['max'])
379
- self.client.write_holding_float(4038+(N-1)*200, value['min'])
+ self.client.write_holding_float(4034+(N-1)*200, value['min'])
380
381
382
def get_cascade_en(self, N):
0 commit comments