Skip to content
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
4 changes: 3 additions & 1 deletion content/components/sensor/dallas_temp.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ required to be set up in your configuration for this sensor to work.
sensor:
- platform: dallas_temp
address: 0x1234567812345628
index: 1
name: temperature
update_interval: 120s
```

## Configuration variables

- **address** (*Optional*, int): The address of the sensor. Required if there is more than one device on the bus.
- **address** (*Optional*, int): The address of the sensor. Required if there is more than one device on the bus and index is not specified.
- **index** (*Optional*, byte): The index of the sensor. Required if there is more than one device on the bus and address is not specified. *Note this index is based on the hardware addresses of the sensor and indexes will shift when during startup a sensor is not connected.*
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Grammar error: 'when during startup' should be 'when a sensor is not connected during startup' or 'during startup when a sensor is not connected'.

Suggested change
- **index** (*Optional*, byte): The index of the sensor. Required if there is more than one device on the bus and address is not specified. *Note this index is based on the hardware addresses of the sensor and indexes will shift when during startup a sensor is not connected.*
- **index** (*Optional*, byte): The index of the sensor. Required if there is more than one device on the bus and address is not specified. *Note this index is based on the hardware addresses of the sensor and indexes will shift during startup when a sensor is not connected.*

Copilot uses AI. Check for mistakes.

- **resolution** (*Optional*, int): An optional resolution from 9 to 12. Higher means more accurate.
Defaults to the maximum for most Dallas temperature sensors: 12.

Expand Down