a rough patchwork

This commit is contained in:
2023-05-16 13:53:11 +02:00
parent 9c59d52d5c
commit f7a117fd6e
11 changed files with 263 additions and 532 deletions

View 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):