mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-07-12 11:41:52 +02:00
feat(config): added epics example config
This commit is contained in:
31
ophyd_devices/configs/epics_examples.yaml
Normal file
31
ophyd_devices/configs/epics_examples.yaml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
my_epics_motor:
|
||||||
|
description: 'This is an example of an EpicsMotor device'
|
||||||
|
deviceClass: ophyd.EpicsMotor
|
||||||
|
deviceConfig:
|
||||||
|
prefix: 'X06DA-OP-SLH:TRXW'
|
||||||
|
onFailure: buffer
|
||||||
|
enabled: true
|
||||||
|
readoutPriority: monitored
|
||||||
|
readOnly: false
|
||||||
|
softwareTrigger: false
|
||||||
|
my_diode:
|
||||||
|
description: 'This is an example of a read-only Epics signal'
|
||||||
|
deviceClass: ophyd.EpicsSignalRO
|
||||||
|
deviceConfig:
|
||||||
|
read_pv: 'X06DA-OP-XPM1:BOT:READOUT'
|
||||||
|
onFailure: buffer
|
||||||
|
enabled: true
|
||||||
|
readoutPriority: monitored
|
||||||
|
readOnly: true
|
||||||
|
softwareTrigger: false
|
||||||
|
my_settable_signal:
|
||||||
|
description: 'This is an example of a settable Epics signal'
|
||||||
|
deviceClass: ophyd.EpicsSignal
|
||||||
|
deviceConfig:
|
||||||
|
read_pv: 'X07MA-FE-DSAPER'
|
||||||
|
onFailure: retry
|
||||||
|
enabled: true
|
||||||
|
readoutPriority: baseline
|
||||||
|
readOnly: false
|
||||||
|
softwareTrigger: false
|
||||||
|
|
Reference in New Issue
Block a user