32 lines
644 B
Plaintext
32 lines
644 B
Plaintext
deviceDesc = Kelvinox-JT for FLAME
|
|
|
|
proc triton {kind obj name db col} {
|
|
makenv $obj -driver itc$kind -port triton:33576 -controller _tritondil $db
|
|
switch $kind {
|
|
temp {
|
|
GraphAdd $obj K_3 T_$name
|
|
GraphAdd $obj.raw Ohm_3 R_$name
|
|
}
|
|
press {
|
|
GraphAdd $obj mbar_2 p_$name
|
|
}
|
|
}
|
|
}
|
|
|
|
triton temp tsorb sorb T1 dark_violet
|
|
triton temp tivc IVC T2 brown
|
|
triton temp tstill still T3 orange
|
|
triton temp tcp cond T4 grey
|
|
triton temp tmix mix T5 cyan
|
|
|
|
triton press pdump dump P1 cyan
|
|
triton press pcond cond P2 blue
|
|
triton press pstill still P3 black
|
|
triton press pfore fore P4 green
|
|
triton press pback back P5 red
|
|
|
|
|
|
|
|
|
|
|