Skip to content

Commit

Permalink
docs(api): hotfix for array to int in plate reader code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyburghardt committed Mar 4, 2025
1 parent a24763f commit fcd5876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/docs/v2/modules/absorbance_plate_reader.rst
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ Now the reader is prepared to read at 450 nm. Note that the ``wavelengths`` para
This example can be extended by adding a reference wavelength::

pr_mod.initialize(
mode="single", wavelengths=[450], reference_wavelength=[562]
mode="single", wavelengths=[450], reference_wavelength=562
)

When configured this way, the module will read twice. In the :ref:`output data <plate-reader-data>`, the values read for ``reference_wavelength`` will be subtracted from the values read for the single member of ``wavelengths``. This is useful for normalization, or to correct for background interference in wavelength measurements.

0 comments on commit fcd5876

Please sign in to comment.