diff --git a/docs/how-to/make-a-standard-detector.rst b/docs/how-to/make-a-standard-detector.rst index 7016f2a247..ecb61352a3 100644 --- a/docs/how-to/make-a-standard-detector.rst +++ b/docs/how-to/make-a-standard-detector.rst @@ -50,12 +50,12 @@ Writing a non-AreaDetector StandardDetector A non-AreaDetector `StandardDetector` should implement `DetectorControl` and `DetectorWriter` directly. Here we construct a `DetectorControl` that co-ordinates signals on a PandA PositionCapture block - a child device "pcap" of the `StandardDetector` implementation, analogous to the :py:class:`FooDriver`. -.. literalinclude:: ../../src/ophyd_async/fastcs/panda/_panda_controller.py +.. literalinclude:: ../../src/ophyd_async/fastcs/panda/_control.py :pyobject: PandaPcapController The PandA may write a number of fields, and the :py:class:`PandaHDFWriter` co-ordinates those, configures the filewriter and describes the data for the RunEngine. -.. literalinclude:: ../../src/ophyd_async/fastcs/panda/_hdf_writer.py +.. literalinclude:: ../../src/ophyd_async/fastcs/panda/_writer.py :pyobject: PandaHDFWriter The PandA StandardDetector implementation simply ties the component parts and its child devices together.