mirror of
https://github.com/esphome/esphome.git
synced 2025-09-01 19:02:18 +01:00
VEML7700 and VEML6030 light sensors (#6067)
* VEML7700 and VEML6030 light sensors * VEML7700 and VEML6030 light sensors - CODEOWNERS * VEML7700 and VEML6030 light sensors - tidy up * VEML7700 and VEML6030 light sensors - tidy up * VEML7700 tidy up * VEML7700 tidy up 4 * VEML7700 tidying up more * VEML7700 after review. non-blocking approach * VEML7700 CONSTANT_CASE * VEML7700 merge fix * VEML7700 pragma pack changed to attribute * VEML7700 pragma pack -> attribute * Minor publish split * minor * LOGD->LOGV * new school tests added * Discard changes to tests/test1.yaml --------- Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
This commit is contained in:
10
tests/components/veml7700/common.yaml
Normal file
10
tests/components/veml7700/common.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
sensor:
|
||||
- platform: veml7700
|
||||
address: 0x10
|
||||
i2c_id: i2c_veml7700
|
||||
ambient_light: Ambient light
|
||||
ambient_light_counts: Ambient light counts
|
||||
full_spectrum: Full spectrum
|
||||
full_spectrum_counts: Full spectrum counts
|
||||
actual_integration_time: Actual integration time
|
||||
actual_gain: Actual gain
|
6
tests/components/veml7700/test.esp32-c3-idf.yaml
Normal file
6
tests/components/veml7700/test.esp32-c3-idf.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
<<: !include common.yaml
|
6
tests/components/veml7700/test.esp32-c3.yaml
Normal file
6
tests/components/veml7700/test.esp32-c3.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
<<: !include common.yaml
|
6
tests/components/veml7700/test.esp32-idf.yaml
Normal file
6
tests/components/veml7700/test.esp32-idf.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 16
|
||||
sda: 17
|
||||
|
||||
<<: !include common.yaml
|
6
tests/components/veml7700/test.esp32.yaml
Normal file
6
tests/components/veml7700/test.esp32.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 16
|
||||
sda: 17
|
||||
|
||||
<<: !include common.yaml
|
6
tests/components/veml7700/test.esp8266.yaml
Normal file
6
tests/components/veml7700/test.esp8266.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
<<: !include common.yaml
|
6
tests/components/veml7700/test.rp2040.yaml
Normal file
6
tests/components/veml7700/test.rp2040.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
i2c:
|
||||
- id: i2c_veml7700
|
||||
scl: 5
|
||||
sda: 4
|
||||
|
||||
<<: !include common.yaml
|
Reference in New Issue
Block a user