diff --git a/ophyd_devices/devices/device_list.md b/ophyd_devices/devices/device_list.md
index 797f357..9f37afd 100644
--- a/ophyd_devices/devices/device_list.md
+++ b/ophyd_devices/devices/device_list.md
@@ -5,6 +5,7 @@
| :----- | :------------- | :------ |
| Andor3DetectorCam |
ADAndor3 driver, https://github.com/areaDetector/ADAndor3
::
from ophyd import Component as Cpt
class MyDetector(ADBase):
cam = Cpt(Andor3DetectorCam, 'cam1:')
| [ophyd_devices.devices.areadetector.cam](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/cam.py) |
| AravisDetectorCam |
ADAravis driver, https://github.com/areaDetector/ADAravis
::
from ophyd import Component as Cpt
class MyDetector(ADBase):
cam = Cpt(AravisDetectorCam, 'cam1:')
| [ophyd_devices.devices.areadetector.cam](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/cam.py) |
+| ASItpxCam |
ASI Timepix detector driver, https://github.com/paulscherrerinstitute/ADASItpx
::
from ophyd import Component as Cpt
class MyDetector(ADBase):
cam = Cpt(ASItpxCam, 'cam1:')
| [ophyd_devices.devices.areadetector.cam](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/cam.py) |
| AttributePlugin_V35 |
Plugin to extract NDArray attributes and publish their values over channel access,
https://areadetector.github.io/areaDetector/ADCore/NDPluginAttribute.html.
::
class MyDetector(ADBase):
attr = Cpt(AttributePlugin_V35, 'Attr1:')
| [ophyd_devices.devices.areadetector.plugins](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/plugins.py) |
| AttrPlotPlugin_V35 |
Plugin to retrieve NDAttribute values, cache them and expose them as a waveform,
https://areadetector.github.io/areaDetector/ADCore/NDPluginAttrPlot.html.
::
class MyDetector(ADBase):
attrplot = Cpt(AttrPlotPlugin_V35, 'AttrPlot1:')
| [ophyd_devices.devices.areadetector.plugins](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/plugins.py) |
| BadPixelPlugin |
Plugin to replace bad pixels in an NDArray,
https://areadetector.github.io/areaDetector/ADCore/NDPluginBadPixel.html.
::
class MyDetector(ADBase):
baxpixel = Cpt(BadPixelPlugin, 'BadPix1:')
| [ophyd_devices.devices.areadetector.plugins](https://gitlab.psi.ch/bec/ophyd_devices/-/blob/main/ophyd_devices/devices/areadetector/plugins.py) |