Skip to content

Commit

Permalink
Add auto shutter input to zebra (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
olliesilvester authored Oct 9, 2024
1 parent 08268c3 commit e2b2705
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/dodal/devices/zebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
)
from ophyd_async.epics.signal import epics_signal_r, epics_signal_rw

# These constants refer to I03's Zebra. See https://github.com/DiamondLightSource/dodal/issues/772
# Sources
DISCONNECT = 0
IN1_TTL = 1
Expand All @@ -39,8 +40,10 @@

# The AND gate that controls the automatic shutter
AUTO_SHUTTER_GATE = 2
# The input that triggers the automatic shutter
AUTO_SHUTTER_INPUT = 1

# The first two inputs of the auto shutter gate.
AUTO_SHUTTER_INPUT_1 = 1
AUTO_SHUTTER_INPUT_2 = 2


class ArmSource(str, Enum):
Expand Down

0 comments on commit e2b2705

Please sign in to comment.