a rough patchwork
This commit is contained in:
18
measurement_scripts/DilSc_frappy_client.py
Normal file
18
measurement_scripts/DilSc_frappy_client.py
Normal file
@ -0,0 +1,18 @@
|
||||
import sys
|
||||
sys.path.append('/sf/cristallina/applications/frappy')
|
||||
from frappy.client import SecopClient
|
||||
from frappy.core import BUSY, IDLE, ERROR, Parameter, Command, Done
|
||||
|
||||
# Connect to the dilsc
|
||||
client = SecopClient('dilsc:5000')
|
||||
client.connect()
|
||||
|
||||
def list_identifiers(client=client):
|
||||
return client.identifier
|
||||
|
||||
# Set lower ramp rate in z-axis
|
||||
client.setParameter('mfz','ramp',0.025)
|
||||
|
||||
|
||||
|
||||
def change_temperature(value,temp='T_pucksensor',client=client):
|
Reference in New Issue
Block a user