Skip to content

Commit

Permalink
Use RDBD and call it deadband (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicOram committed Apr 8, 2024
1 parent 2c3331c commit eba79f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ophyd_async/epics/motion/motor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, prefix: str, name="") -> None:
self.acceleration = epics_signal_rw(float, prefix + ".ACCL")
self.motor_egu = epics_signal_r(str, prefix + ".EGU")
self.precision = epics_signal_r(int, prefix + ".PREC")
self.motor_resolution = epics_signal_r(float, prefix + ".MRES")
self.deadband = epics_signal_r(float, prefix + ".RDBD")
self.motor_done_move = epics_signal_r(float, prefix + ".DMOV")
self.low_limit_travel = epics_signal_rw(int, prefix + ".LLM")
self.high_limit_travel = epics_signal_rw(int, prefix + ".HLM")
Expand Down

0 comments on commit eba79f1

Please sign in to comment.