Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom EPS screens #1195

Merged
merged 7 commits into from
Jan 30, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
1195 Add the ability to use a Custom screen in BeckhoffAxis typhos screen for EPS
#################

API Breaks
----------
- N/A

Features
--------
- Added BeckhofAxisEPSCustom class in epics_motor.py and
BeckhofAxisEpicsCusom.ui to allow the use of a custom screen to show EPS
information.

Device Updates
--------------
- N/A

New Devices
-----------
- N/A

Bugfixes
--------
- N/A

Maintenance
-----------
- N/A

Contributors
------------
- jozamudi
12 changes: 12 additions & 0 deletions pcdsdevices/epics_motor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1299,6 +1299,18 @@ class BeckhoffAxisEPS(BeckhoffAxis):
doc='PLC error handling, aux functions, and EPS.')


class BeckhoffAxisEPSCustom(BeckhoffAxis):
"""
A beckhoff axis where custom EPS Logic has been implemented in
a PLC and needs a custom screen to display EPS information

EPS screens are found in
/cds/group/pcds/epics-dev/screens/pydm/eps_screens/${beamline}/${name}

"""
pass


class BeckhoffAxisPLC_Pre140(BeckhoffAxisPLC):
"""
Disable some newly introduced signals.
Expand Down
Loading
Loading