
+ DataType validators are shifted to __call__ + as_json is moved to export_datatape() + new HasProperties Base Mixin for Modules/DataTypes + accessibles can be accessed via iterator of a module + properties are properly 'derived' and checked, are set with .setPropertyValue remember: parameters only have properties, so use getPropertyValue() Change-Id: Iae0273f971aacb00fe6bf05e6a4d24a6d1be881a Reviewed-on: https://forge.frm2.tum.de/review/20635 Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de> Reviewed-by: Markus Zolliker <markus.zolliker@psi.ch>
44 lines
926 B
INI
44 lines
926 B
INI
[node Equipment_ID_for_demonstration]
|
|
description = virtual modules to play around with
|
|
|
|
[interface tcp]
|
|
bindto=0.0.0.0
|
|
bindport=10767
|
|
|
|
[module heatswitch]
|
|
class=secop_demo.modules.Switch
|
|
switch_on_time=5
|
|
switch_off_time=10
|
|
.description="Heatswitch for `mf` device"
|
|
|
|
[module mf]
|
|
class=secop_demo.modules.MagneticField
|
|
heatswitch = heatswitch
|
|
.description="simulates some cryomagnet with persistent/non-persistent switching"
|
|
|
|
[module ts]
|
|
class=secop_demo.modules.SampleTemp
|
|
sensor = 'Q1329V7R3'
|
|
ramp = 4
|
|
target = 10
|
|
value = 10
|
|
.description = "some temperature"
|
|
|
|
[module tc1]
|
|
class=secop_demo.modules.CoilTemp
|
|
sensor="X34598T7"
|
|
.description = "some temperature"
|
|
|
|
[module tc2]
|
|
class=secop_demo.modules.CoilTemp
|
|
sensor="X39284Q8'
|
|
.description = "some temperature"
|
|
|
|
[module label]
|
|
class=secop_demo.modules.Label
|
|
system=Cryomagnet MX15
|
|
subdev_mf=mf
|
|
subdev_ts=ts
|
|
.description = "some label indicating the state of the magnet `mf`."
|
|
|