-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from bluesky.protocols import Movable | ||
from ophyd_async.core import ( | ||
AsyncStatus, | ||
StandardReadable, | ||
) | ||
|
||
from dodal.log import LOGGER | ||
|
||
|
||
class LookupTable(StandardReadable, Movable): | ||
def __init__(self, prefix: str, name: str = ""): | ||
with self.add_children_as_readables(): | ||
# self.actual_transmission = epics_signal_r(float, prefix + "MATCH") | ||
print("test") | ||
|
||
super().__init__(name) | ||
|
||
@AsyncStatus.wrap | ||
async def set(self, transmission: float): | ||
LOGGER.debug("Updating the lookup table ") | ||
await self._use_current_energy.trigger() | ||
LOGGER.info(f"Setting desired transmission to {transmission}") | ||
await self._desired_transmission.set(transmission) | ||
LOGGER.debug("Sending change filter command") | ||
await self._change.trigger() |