Changed temperature range
Change-Id: Ib2a0bc59b191d33e65420375385d8807754193a9
This commit is contained in:
parent
97032193bf
commit
807afba53b
@ -31,7 +31,7 @@ class QnwIO(StringIO):
|
|||||||
|
|
||||||
class SensorTC1(HasIO, Readable):
|
class SensorTC1(HasIO, Readable):
|
||||||
ioClass = QnwIO
|
ioClass = QnwIO
|
||||||
value = Parameter(unit='degC', min=-15, max=120)
|
value = Parameter(unit='degC', min=-55, max=150)
|
||||||
channel = Property('channel name', StringType())
|
channel = Property('channel name', StringType())
|
||||||
|
|
||||||
def set_param(self, adr, value=None):
|
def set_param(self, adr, value=None):
|
||||||
@ -73,7 +73,7 @@ class SensorTC1(HasIO, Readable):
|
|||||||
|
|
||||||
class TemperatureLoopTC1(SensorTC1, Drivable):
|
class TemperatureLoopTC1(SensorTC1, Drivable):
|
||||||
value = Parameter('temperature', unit='degC')
|
value = Parameter('temperature', unit='degC')
|
||||||
target = Parameter('setpoint', unit='degC', min=-15, max=120)
|
target = Parameter('setpoint', unit='degC', min=-55, max=150)
|
||||||
control = Parameter('temperature control flag', BoolType(), readonly=False)
|
control = Parameter('temperature control flag', BoolType(), readonly=False)
|
||||||
ramp = Parameter('ramping value', FloatRange, unit='degC/min', readonly=False)
|
ramp = Parameter('ramping value', FloatRange, unit='degC/min', readonly=False)
|
||||||
ramp_used = Parameter('ramping status', BoolType(), default=False, readonly=False)
|
ramp_used = Parameter('ramping status', BoolType(), default=False, readonly=False)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user