17 lines
698 B
Plaintext
17 lines
698 B
Plaintext
# vim: ts=8 sts=2 sw=2 expandtab autoindent smartindent nocindent
|
|
driver lakeshore_m370 = {
|
|
protocol = std
|
|
sobj_priv_type = 'user none'
|
|
class = environment
|
|
simulation_group = environment_simulation
|
|
add_args = 'id tol'
|
|
make_args = 'id tol'
|
|
code mkDriver = {%%
|
|
::scobj::lakeshore_370::mk_sct_driver $sct_controller environment $name $tol
|
|
hsetprop ${scobj_hpath}/Loop1/setpoint permlink data_set T[format "%02d" ${id}]SP01
|
|
hsetprop ${scobj_hpath}/Loop1/setpoint @description T[format "%02d" ${id}]SP01
|
|
hsetprop ${scobj_hpath}/Sensor/value permlink data_set T[format "%02d" ${id}]S01
|
|
hsetprop ${scobj_hpath}/Sensor/value @description T[format "%02d" ${id}]S01
|
|
%%}
|
|
}
|