mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-27 11:16:54 +00:00
Update tellstick to match with new sensor configuration (#8716)
* Updated to match with new sensor configuration Sensor configuration will now use static identifiers instead of ID number to set the name of named sensors. * Update source/_components/tellstick.markdown Co-Authored-By: endor-force <1937941+endor-force@users.noreply.github.com>
This commit is contained in:
parent
389354c292
commit
ec5f03b306
@ -108,10 +108,19 @@ sensor:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
only_named:
|
only_named:
|
||||||
description: Only show the named sensors. Set to `true` to hide sensors.
|
description: Only add and include specified sensors. If this is not specified all sensors will be imported and the names will be based on each sensor's ID number.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: list
|
||||||
|
keys:
|
||||||
|
id:
|
||||||
|
description: The ID-number of the sensor to include.
|
||||||
|
required: true
|
||||||
|
type: integer
|
||||||
|
name:
|
||||||
|
description: Specify the name of the selected sensor.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
temperature_scale:
|
temperature_scale:
|
||||||
description: The scale of the temperature value.
|
description: The scale of the temperature value.
|
||||||
required: false
|
required: false
|
||||||
@ -134,11 +143,13 @@ In this section you find some real-life examples of how to use this sensor.
|
|||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: tellstick
|
- platform: tellstick
|
||||||
135: Outside
|
|
||||||
21: Inside
|
|
||||||
only_named: true
|
|
||||||
temperature_scale: "°C"
|
temperature_scale: "°C"
|
||||||
datatype_mask: 1
|
datatype_mask: 1
|
||||||
|
only_named:
|
||||||
|
- id: 135
|
||||||
|
name: Outside
|
||||||
|
- id: 21
|
||||||
|
name: Inside
|
||||||
```
|
```
|
||||||
|
|
||||||
## {% linkable_title Switch %}
|
## {% linkable_title Switch %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user