Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions startup/00-base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Make ophyd listen to pyepics.
import logging
import matplotlib.pyplot
import nslsii
import time
import matplotlib.pyplot as plt

from bluesky.utils import ts_msg_hook

# See docstring for nslsii.configure_base() for more details
Expand All @@ -13,8 +16,8 @@
pbar=True,
bec=True,
magics=True,
mpl=True,
#publish_documents_to_kafka=True
mpl=False,
publish_documents_to_kafka=True
)

from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions startup/11-temperature-controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,5 @@ class Lakeshore336(Device):
#hotairblower=Eurotherm('XF:28ID1-ES:1{Env:03}T-I',
# write_pv='XF:28ID1-ES:1{Env:03}T-SP',
# tolerance=1,name='hotairblower')

sorensen850_manual = EpicsSignal('XF:28ID1-ES{LS336:1-Out:3}Out:Man-RB', write_pv='XF:28ID1-ES{LS336:1-Out:3}Out:Man-SP', name='sorensen850_manual')
3 changes: 2 additions & 1 deletion startup/12-motors.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,5 @@ class FilterBankTwoButtonShutter(Device):
#detector for ECS - DO and MA
ECS_det1 = EpicsSignalRO( 'XF:28IDC-BI:1{IM:1}:C4_1' ,name='ECS_det1')


#45-degree shifting motor on M6-grid, for use with hot air blower / cryostream with angled sample bracket
broadside45_shifter = EpicsMotor('XF:28ID1B-ES{Smpl:Array-Ax:Horiz}Mtr', name='broadside45_shifter')
Loading