mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 20:48:21 +01:00
added tests
This commit is contained in:
parent
bfc127c868
commit
b7a7dcc4dc
6 changed files with 72 additions and 0 deletions
12
tests/components/hdc2010/test.esp32-c3-idf.yaml
Normal file
12
tests/components/hdc2010/test.esp32-c3-idf.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc1080
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
sensor:
|
||||
- platform: hdc1080
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 15s
|
12
tests/components/hdc2010/test.esp32-c3.yaml
Normal file
12
tests/components/hdc2010/test.esp32-c3.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc2010
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
sensor:
|
||||
- platform: hdc2010
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 30s
|
12
tests/components/hdc2010/test.esp32-idf.yaml
Normal file
12
tests/components/hdc2010/test.esp32-idf.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc2010
|
||||
scl: 16
|
||||
sda: 17
|
||||
|
||||
sensor:
|
||||
- platform: hdc2010
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 30s
|
12
tests/components/hdc2010/test.esp32.yaml
Normal file
12
tests/components/hdc2010/test.esp32.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc2010
|
||||
scl: 16
|
||||
sda: 17
|
||||
|
||||
sensor:
|
||||
- platform: hdc2010
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 15s
|
12
tests/components/hdc2010/test.esp8266.yaml
Normal file
12
tests/components/hdc2010/test.esp8266.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc2010
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
sensor:
|
||||
- platform: hdc2010
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 30s
|
12
tests/components/hdc2010/test.rp2040.yaml
Normal file
12
tests/components/hdc2010/test.rp2040.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
i2c:
|
||||
- id: i2c_hdc2010
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
sensor:
|
||||
- platform: hdc2010
|
||||
temperature:
|
||||
name: Temperature
|
||||
humidity:
|
||||
name: Humidity
|
||||
update_interval: 30s
|
Loading…
Reference in a new issue