Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/content/docs/components/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ Sensors are organized into categories; if a given sensor fits into more than one
["Dallas DS18B20", "/components/sensor/dallas_temp/", "dallas.jpg", "Temperature"],
["DHT", "/components/sensor/dht/", "dht.jpg", "Temperature & Humidity"],
["DHT12", "/components/sensor/dht12/", "dht12.jpg", "Temperature & Humidity"],
["DPS310", "/components/sensor/dps310/", "dps310.jpg", "Temperature & Pressure"],
["DPS310/DPS368", "/components/sensor/dps310/", "dps310.jpg", "Temperature & Pressure"],
["EMC2101", "/components/emc2101/", "emc2101.jpg", "Temperature"],
["ENS160", "/components/sensor/ens160/", "ens160.jpg", "CO2 & Air Quality"],
["ENS210", "/components/sensor/ens210/", "ens210.jpg", "Temperature & Humidity"],
Expand Down
15 changes: 11 additions & 4 deletions src/content/docs/components/sensor/dps310.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: "Instructions for setting up DPS310 atmospheric pressure sensors"
title: "DPS310 Atmospheric Pressure Sensor"
description: "Instructions for setting up DPS310/DPS368 atmospheric pressure sensors"
title: "DPS310/DPS368 Atmospheric Pressure Sensor"
---

import { Image } from 'astro:assets';
Expand All @@ -9,8 +9,15 @@ import dps310FullImg from './images/dps310-full.jpg';
import APIRef from '@components/APIRef.astro';

The `dps310` sensor platform allows you to use both the temperature and pressure sensors on
your DPS310 atmospheric pressure sensor ([Adafruit](https://www.adafruit.com/product/4494))
with ESPHome. The [I²C](/components/i2c) component is required to be set up in your configuration.
your DPS310 or DPS368 atmospheric pressure sensor
([Adafruit](https://www.adafruit.com/product/4494)) with ESPHome.
The [I²C](/components/i2c) component is required to be set up in your configuration.

> [!NOTE]
> The Infineon DPS368 is a drop-in replacement for the discontinued DPS310 and is fully
> supported by this component. The two sensors share identical register maps, I²C addresses, and
> calibration procedures - no configuration changes are needed. If you are designing a new project,
> Infineon recommends the DPS368.

<Figure
src={dps310FullImg}
Expand Down