Skip to content

Fix typos in qmc5883l.rst #5259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: current
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions components/sensor/qmc5883l.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ QMC5883L Magnetometer

The ``qmc5883l`` allows you to use your QMC5883L triple-axis magnetometers
(`datasheet <http://wiki.sunfounder.cc/images/7/72/QMC5883L-Datasheet-1.0.pdf>`__) with
ESPHome. This sensor is very simular to the :ref:`HMC5883L <hmc5883l>` sensor and is oftern found
as a knock off replacement. The QMC5883L sensor performs on par to the HMC5883L sensor,
ESPHome. This sensor is very similar to the :ref:`HMC5883L <hmc5883l>` sensor and is often found
as a knock-off replacement. The QMC5883L sensor performs on par with the HMC5883L sensor,
though the configuration differs. The :ref:`I²C Bus <i2c>` is required to be set up in your
configuration for this sensor to work.

Expand Down Expand Up @@ -44,7 +44,7 @@ configuration for this sensor to work.
Configuration variables:
------------------------

- **address** (*Optional*, int): Manually specify the I²c address of the sensor. Defaults to ``0x0D``.
- **address** (*Optional*, int): Manually specify the I²C address of the sensor. Defaults to ``0x0D``.
- **field_strength_x** (*Optional*): The field strength in microtesla along the X-Axis. All options from
:ref:`Sensor <config-sensor>`.
- **field_strength_y** (*Optional*): The field strength in microtesla along the Y-Axis. All options from
Expand All @@ -65,17 +65,17 @@ Configuration variables:
Range Options
-------------

By default, the QMC5883L sensor measurement range is 200µT. You can, however,
By default, the QMC5883L sensor measurement range is 200uT. You can, however,
configure this amount. Possible values:

- ``200µT`` (default)
- ``800µT``
- ``200uT`` (default)
- ``800uT``

Oversampling Options
--------------------

By default, the QMC5883L sensor measures each value 512 times when requesting a new value. You can, however,
configure this amount. The result is the sensor will take the adverage of the x samples. Possible sampling values:
configure this amount. The sensor reports the average of the configured number of samples (N). Possible sampling values:

- ``512x`` (default)
- ``256x``
Expand Down