mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 16:08:10 +01:00
added tests
This commit is contained in:
parent
06e4eaf139
commit
d49ed3edcf
1 changed files with 46 additions and 0 deletions
|
@ -323,6 +323,14 @@ mcp23s17:
|
||||||
cs_pin: GPIO12
|
cs_pin: GPIO12
|
||||||
deviceaddress: 1
|
deviceaddress: 1
|
||||||
|
|
||||||
|
optolink:
|
||||||
|
protocol: P300
|
||||||
|
rx_pin: GPIO15
|
||||||
|
tx_pin: GPIO16
|
||||||
|
logger: true
|
||||||
|
device_info: Device Info
|
||||||
|
state: Component state
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
- platform: internal_temperature
|
- platform: internal_temperature
|
||||||
name: Internal Temperature
|
name: Internal Temperature
|
||||||
|
@ -1259,6 +1267,13 @@ sensor:
|
||||||
name: DHT Absolute Humidity
|
name: DHT Absolute Humidity
|
||||||
temperature: dht_temperature
|
temperature: dht_temperature
|
||||||
humidity: dht_humidity
|
humidity: dht_humidity
|
||||||
|
- platform: optolink
|
||||||
|
name: Boiler Temperature
|
||||||
|
address: 0xA309
|
||||||
|
bytes: 2
|
||||||
|
div_ratio: 100
|
||||||
|
unit_of_measurement: °C
|
||||||
|
device_class: temperature
|
||||||
|
|
||||||
esp32_touch:
|
esp32_touch:
|
||||||
setup_mode: false
|
setup_mode: false
|
||||||
|
@ -1532,6 +1547,9 @@ binary_sensor:
|
||||||
name: movement
|
name: movement
|
||||||
has_still_target:
|
has_still_target:
|
||||||
name: still
|
name: still
|
||||||
|
- platform: optolink
|
||||||
|
name: Disturbance
|
||||||
|
address: 0x0A82
|
||||||
|
|
||||||
pca9685:
|
pca9685:
|
||||||
frequency: 500
|
frequency: 500
|
||||||
|
@ -2461,6 +2479,10 @@ switch:
|
||||||
id: outlet_switch
|
id: outlet_switch
|
||||||
optimistic: true
|
optimistic: true
|
||||||
device_class: outlet
|
device_class: outlet
|
||||||
|
- platform: optolink
|
||||||
|
name: Economy mode
|
||||||
|
address: 0x2302
|
||||||
|
icon: mdi:sprout-outline
|
||||||
|
|
||||||
fan:
|
fan:
|
||||||
- platform: binary
|
- platform: binary
|
||||||
|
@ -3032,6 +3054,11 @@ text_sensor:
|
||||||
tag_name: OPTARIF
|
tag_name: OPTARIF
|
||||||
name: optarif
|
name: optarif
|
||||||
teleinfo_id: myteleinfo
|
teleinfo_id: myteleinfo
|
||||||
|
- platform: optolink
|
||||||
|
name: Error history 1
|
||||||
|
address: 0x7590
|
||||||
|
bytes: 9
|
||||||
|
raw: true
|
||||||
|
|
||||||
sn74hc595:
|
sn74hc595:
|
||||||
- id: sn74hc595_hub
|
- id: sn74hc595_hub
|
||||||
|
@ -3136,6 +3163,17 @@ number:
|
||||||
step: 1
|
step: 1
|
||||||
max_value: 10
|
max_value: 10
|
||||||
optimistic: true
|
optimistic: true
|
||||||
|
- platform: optolink
|
||||||
|
name: Room Temperature Setpoint
|
||||||
|
unit_of_measurement: °C
|
||||||
|
address: 0x2306
|
||||||
|
bytes: 1
|
||||||
|
min_value: 3
|
||||||
|
max_value: 37
|
||||||
|
step: 1
|
||||||
|
mode: box
|
||||||
|
icon: "mdi:home-thermometer"
|
||||||
|
device_class: temperature
|
||||||
|
|
||||||
select:
|
select:
|
||||||
- platform: template
|
- platform: template
|
||||||
|
@ -3149,6 +3187,14 @@ select:
|
||||||
- platform: copy
|
- platform: copy
|
||||||
source_id: test_select
|
source_id: test_select
|
||||||
name: Test Select Copy
|
name: Test Select Copy
|
||||||
|
- platform: optolink
|
||||||
|
name: Operation mode
|
||||||
|
address: 0x2323
|
||||||
|
bytes: 1
|
||||||
|
map:
|
||||||
|
- "0 -> Off"
|
||||||
|
- "1 -> Only hot water"
|
||||||
|
- "2 -> Heating and hot water"
|
||||||
|
|
||||||
qr_code:
|
qr_code:
|
||||||
- id: homepage_qr
|
- id: homepage_qr
|
||||||
|
|
Loading…
Reference in a new issue