mirror of
https://github.com/esphome/esphome.git
synced 2026-05-28 21:59:59 +08:00
[CI] Remove old test yaml files (#7002)
This commit is contained in:
@@ -1,232 +0,0 @@
|
|||||||
---
|
|
||||||
substitutions:
|
|
||||||
devicename: test1_1
|
|
||||||
sensorname: my
|
|
||||||
textname: template
|
|
||||||
roomname: fastled_room
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: test1-1
|
|
||||||
name_add_mac_suffix: true
|
|
||||||
platform: ESP32
|
|
||||||
board: nodemcu-32s
|
|
||||||
platformio_options:
|
|
||||||
board_build.partitions: huge_app.csv
|
|
||||||
on_loop:
|
|
||||||
then:
|
|
||||||
- light.addressable_set:
|
|
||||||
id: addr1
|
|
||||||
range_from: 0
|
|
||||||
range_to: 100
|
|
||||||
red: 100%
|
|
||||||
green: !lambda "return 255;"
|
|
||||||
blue: 0%
|
|
||||||
white: 100%
|
|
||||||
|
|
||||||
wled:
|
|
||||||
|
|
||||||
wifi:
|
|
||||||
networks:
|
|
||||||
- ssid: "MySSID"
|
|
||||||
password: "password1"
|
|
||||||
|
|
||||||
uart:
|
|
||||||
- id: adalight_uart
|
|
||||||
tx_pin: GPIO25
|
|
||||||
rx_pin: GPIO26
|
|
||||||
baud_rate: 115200
|
|
||||||
rx_buffer_size: 1024
|
|
||||||
|
|
||||||
adalight:
|
|
||||||
|
|
||||||
network:
|
|
||||||
|
|
||||||
e131:
|
|
||||||
|
|
||||||
power_supply:
|
|
||||||
- id: atx_power_supply
|
|
||||||
enable_time: 20ms
|
|
||||||
keep_on_time: 10s
|
|
||||||
enable_on_boot: true
|
|
||||||
pin:
|
|
||||||
number: 13
|
|
||||||
inverted: true
|
|
||||||
|
|
||||||
i2c:
|
|
||||||
sda: 21
|
|
||||||
scl:
|
|
||||||
number: 22
|
|
||||||
allow_other_uses: true
|
|
||||||
scan: true
|
|
||||||
frequency: 100kHz
|
|
||||||
setup_priority: -100
|
|
||||||
id: i2c_bus
|
|
||||||
|
|
||||||
pca9685:
|
|
||||||
frequency: 500
|
|
||||||
address: 0x0
|
|
||||||
i2c_id: i2c_bus
|
|
||||||
|
|
||||||
output:
|
|
||||||
- platform: pca9685
|
|
||||||
id: pca_0
|
|
||||||
channel: 0
|
|
||||||
- platform: pca9685
|
|
||||||
id: pca_1
|
|
||||||
channel: 1
|
|
||||||
- platform: pca9685
|
|
||||||
id: pca_2
|
|
||||||
channel: 2
|
|
||||||
|
|
||||||
light:
|
|
||||||
- platform: rgb
|
|
||||||
name: Living Room Lights
|
|
||||||
id: ${roomname}_lights
|
|
||||||
red: pca_0
|
|
||||||
green: pca_1
|
|
||||||
blue: pca_2
|
|
||||||
- platform: fastled_clockless
|
|
||||||
id: addr1
|
|
||||||
chipset: WS2811
|
|
||||||
pin:
|
|
||||||
allow_other_uses: true
|
|
||||||
number: GPIO23
|
|
||||||
num_leds: 60
|
|
||||||
rgb_order: BRG
|
|
||||||
max_refresh_rate: 20ms
|
|
||||||
power_supply: atx_power_supply
|
|
||||||
color_correct: [75%, 100%, 50%]
|
|
||||||
name: FastLED WS2811 Light
|
|
||||||
effects:
|
|
||||||
- addressable_color_wipe:
|
|
||||||
- addressable_color_wipe:
|
|
||||||
name: Color Wipe Effect With Custom Values
|
|
||||||
colors:
|
|
||||||
- red: 100%
|
|
||||||
green: 100%
|
|
||||||
blue: 100%
|
|
||||||
num_leds: 1
|
|
||||||
- red: 0%
|
|
||||||
green: 0%
|
|
||||||
blue: 0%
|
|
||||||
num_leds: 1
|
|
||||||
add_led_interval: 100ms
|
|
||||||
reverse: false
|
|
||||||
- addressable_scan:
|
|
||||||
- addressable_scan:
|
|
||||||
name: Scan Effect With Custom Values
|
|
||||||
move_interval: 100ms
|
|
||||||
- addressable_twinkle:
|
|
||||||
- addressable_twinkle:
|
|
||||||
name: Twinkle Effect With Custom Values
|
|
||||||
twinkle_probability: 5%
|
|
||||||
progress_interval: 4ms
|
|
||||||
- addressable_random_twinkle:
|
|
||||||
- addressable_random_twinkle:
|
|
||||||
name: Random Twinkle Effect With Custom Values
|
|
||||||
twinkle_probability: 5%
|
|
||||||
progress_interval: 32ms
|
|
||||||
- addressable_fireworks:
|
|
||||||
- addressable_fireworks:
|
|
||||||
name: Fireworks Effect With Custom Values
|
|
||||||
update_interval: 32ms
|
|
||||||
spark_probability: 10%
|
|
||||||
use_random_color: false
|
|
||||||
fade_out_rate: 120
|
|
||||||
- addressable_flicker:
|
|
||||||
- addressable_flicker:
|
|
||||||
name: Flicker Effect With Custom Values
|
|
||||||
update_interval: 16ms
|
|
||||||
intensity: 5%
|
|
||||||
- addressable_lambda:
|
|
||||||
name: Test For Custom Lambda Effect
|
|
||||||
lambda: |-
|
|
||||||
if (initial_run) {
|
|
||||||
it[0] = current_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
- wled:
|
|
||||||
port: 11111
|
|
||||||
|
|
||||||
- adalight:
|
|
||||||
uart_id: adalight_uart
|
|
||||||
|
|
||||||
- e131:
|
|
||||||
universe: 1
|
|
||||||
|
|
||||||
- automation:
|
|
||||||
name: Custom Effect
|
|
||||||
sequence:
|
|
||||||
- light.addressable_set:
|
|
||||||
id: addr1
|
|
||||||
red: 100%
|
|
||||||
green: 100%
|
|
||||||
blue: 0%
|
|
||||||
- delay: 100ms
|
|
||||||
- light.addressable_set:
|
|
||||||
id: addr1
|
|
||||||
red: 0%
|
|
||||||
green: 100%
|
|
||||||
blue: 0%
|
|
||||||
|
|
||||||
- platform: fastled_spi
|
|
||||||
id: addr2
|
|
||||||
chipset: WS2801
|
|
||||||
data_pin:
|
|
||||||
allow_other_uses: true
|
|
||||||
number: GPIO23
|
|
||||||
clock_pin:
|
|
||||||
number: GPIO22
|
|
||||||
allow_other_uses: true
|
|
||||||
data_rate: 2MHz
|
|
||||||
num_leds: 60
|
|
||||||
rgb_order: BRG
|
|
||||||
name: FastLED SPI Light
|
|
||||||
- platform: neopixelbus
|
|
||||||
id: addr3
|
|
||||||
name: Neopixelbus Light
|
|
||||||
gamma_correct: 2.8
|
|
||||||
color_correct: [0.0, 0.0, 0.0, 0.0]
|
|
||||||
default_transition_length: 10s
|
|
||||||
power_supply: atx_power_supply
|
|
||||||
effects:
|
|
||||||
- addressable_flicker:
|
|
||||||
name: Flicker Effect With Custom Values
|
|
||||||
update_interval: 16ms
|
|
||||||
intensity: 5%
|
|
||||||
type: GRBW
|
|
||||||
variant: SK6812
|
|
||||||
method: ESP32_I2S_0
|
|
||||||
num_leds: 60
|
|
||||||
pin:
|
|
||||||
allow_other_uses: true
|
|
||||||
number: GPIO23
|
|
||||||
- platform: partition
|
|
||||||
name: Partition Light
|
|
||||||
segments:
|
|
||||||
- id: addr1
|
|
||||||
from: 0
|
|
||||||
to: 0
|
|
||||||
- id: addr2
|
|
||||||
from: 1
|
|
||||||
to: 10
|
|
||||||
- id: addr2
|
|
||||||
from: 20
|
|
||||||
to: 25
|
|
||||||
- single_light_id: ${roomname}_lights
|
|
||||||
|
|
||||||
canbus:
|
|
||||||
- platform: esp32_can
|
|
||||||
id: esp32_internal_can
|
|
||||||
rx_pin: GPIO04
|
|
||||||
tx_pin: GPIO05
|
|
||||||
can_id: 4
|
|
||||||
bit_rate: 50kbps
|
|
||||||
|
|
||||||
button:
|
|
||||||
- platform: template
|
|
||||||
name: Canbus Actions
|
|
||||||
on_press:
|
|
||||||
- canbus.send: "abc"
|
|
||||||
- canbus.send: [0, 1, 2]
|
|
||||||
- canbus.send: !lambda return {0, 1, 2};
|
|
||||||
-4427
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
-1432
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,77 +0,0 @@
|
|||||||
---
|
|
||||||
esphome:
|
|
||||||
name: test6
|
|
||||||
project:
|
|
||||||
name: esphome.test6_project
|
|
||||||
version: "1.0.0"
|
|
||||||
|
|
||||||
rp2040:
|
|
||||||
board: rpipicow
|
|
||||||
framework:
|
|
||||||
# Waiting for https://github.com/platformio/platform-raspberrypi/pull/36
|
|
||||||
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
|
|
||||||
|
|
||||||
wifi:
|
|
||||||
networks:
|
|
||||||
- ssid: "MySSID"
|
|
||||||
password: "password1"
|
|
||||||
|
|
||||||
network:
|
|
||||||
enable_ipv6: true
|
|
||||||
|
|
||||||
api:
|
|
||||||
|
|
||||||
ota:
|
|
||||||
- platform: esphome
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
debug:
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: gpio
|
|
||||||
pin: GPIO5
|
|
||||||
id: pin_5_button
|
|
||||||
|
|
||||||
output:
|
|
||||||
- platform: gpio
|
|
||||||
pin: GPIO4
|
|
||||||
id: pin_4
|
|
||||||
|
|
||||||
switch:
|
|
||||||
- platform: output
|
|
||||||
output: pin_4
|
|
||||||
id: pin_4_switch
|
|
||||||
|
|
||||||
spi: # Pins are for SPI1 on the RP2040 Pico-W
|
|
||||||
miso_pin: 8
|
|
||||||
clk_pin: 10
|
|
||||||
mosi_pin: 11
|
|
||||||
id: spi_0
|
|
||||||
interface: hardware
|
|
||||||
|
|
||||||
# light:
|
|
||||||
# - platform: rp2040_pio_led_strip
|
|
||||||
# id: led_strip
|
|
||||||
# pin: GPIO13
|
|
||||||
# num_leds: 60
|
|
||||||
# pio: 0
|
|
||||||
# rgb_order: GRB
|
|
||||||
# chipset: WS2812
|
|
||||||
# - platform: rp2040_pio_led_strip
|
|
||||||
# id: led_strip_custom_timings
|
|
||||||
# pin: GPIO13
|
|
||||||
# num_leds: 60
|
|
||||||
# pio: 1
|
|
||||||
# rgb_order: GRB
|
|
||||||
# bit0_high: .1us
|
|
||||||
# bit0_low: 1.2us
|
|
||||||
# bit1_high: .69us
|
|
||||||
# bit1_low: .4us
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: internal_temperature
|
|
||||||
name: Internal Temperature
|
|
||||||
- platform: adc
|
|
||||||
pin: VCC
|
|
||||||
name: VSYS
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# Tests for ESP32-C3 boards which use toolchain-riscv32-esp
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
network:
|
|
||||||
enable_ipv6: true
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: lolin_c3_mini
|
|
||||||
framework:
|
|
||||||
type: arduino
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: test7
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
debug:
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: adc
|
|
||||||
id: adc_sensor_p4
|
|
||||||
name: ADC pin 4
|
|
||||||
pin: 4
|
|
||||||
attenuation: 11db
|
|
||||||
update_interval: 1s
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
# Tests for ESP32-S3 boards - IDf
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
network:
|
|
||||||
enable_ipv6: true
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: esp32s3box
|
|
||||||
variant: ESP32S3
|
|
||||||
framework:
|
|
||||||
type: esp-idf
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: esp32-s3-test
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
debug:
|
|
||||||
|
|
||||||
psram:
|
|
||||||
|
|
||||||
spi:
|
|
||||||
- id: spi_id_1
|
|
||||||
type: single
|
|
||||||
clk_pin:
|
|
||||||
number: GPIO7
|
|
||||||
allow_other_uses: false
|
|
||||||
mosi_pin: GPIO6
|
|
||||||
interface: hardware
|
|
||||||
spi_device:
|
|
||||||
id: spidev
|
|
||||||
data_rate: 2MHz
|
|
||||||
spi_id: spi_id_1
|
|
||||||
mode: 3
|
|
||||||
bit_order: lsb_first
|
|
||||||
|
|
||||||
display:
|
|
||||||
- platform: ili9xxx
|
|
||||||
id: displ8
|
|
||||||
model: ili9342
|
|
||||||
cs_pin: GPIO5
|
|
||||||
dc_pin: GPIO4
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO48
|
|
||||||
allow_other_uses: true
|
|
||||||
|
|
||||||
i2c:
|
|
||||||
scl: GPIO18
|
|
||||||
sda: GPIO8
|
|
||||||
|
|
||||||
touchscreen:
|
|
||||||
- platform: tt21100
|
|
||||||
display: displ8
|
|
||||||
interrupt_pin:
|
|
||||||
number: GPIO3
|
|
||||||
ignore_strapping_warning: true
|
|
||||||
allow_other_uses: false
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO48
|
|
||||||
allow_other_uses: true
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: tt21100
|
|
||||||
name: Home Button
|
|
||||||
index: 1
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: debug
|
|
||||||
free:
|
|
||||||
name: "Heap Free"
|
|
||||||
block:
|
|
||||||
name: "Max Block Free"
|
|
||||||
loop_time:
|
|
||||||
name: "Loop Time"
|
|
||||||
psram:
|
|
||||||
name: "PSRAM Free"
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
# Tests for ESP32-C3 boards - IDf
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
network:
|
|
||||||
enable_ipv6: true
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: lolin_c3_mini
|
|
||||||
variant: ESP32C3
|
|
||||||
framework:
|
|
||||||
type: esp-idf
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: esp32-c3-test
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
debug:
|
|
||||||
|
|
||||||
psram:
|
|
||||||
|
|
||||||
spi:
|
|
||||||
- id: spi_id_1
|
|
||||||
clk_pin:
|
|
||||||
number: GPIO7
|
|
||||||
allow_other_uses: false
|
|
||||||
mosi_pin: GPIO6
|
|
||||||
interface: any
|
|
||||||
|
|
||||||
spi_device:
|
|
||||||
id: spidev
|
|
||||||
data_rate: 2MHz
|
|
||||||
spi_id: spi_id_1
|
|
||||||
mode: 3
|
|
||||||
bit_order: lsb_first
|
|
||||||
|
|
||||||
display:
|
|
||||||
- platform: ili9xxx
|
|
||||||
id: displ8
|
|
||||||
model: ili9342
|
|
||||||
cs_pin: GPIO5
|
|
||||||
dc_pin: GPIO4
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO21
|
|
||||||
|
|
||||||
i2c:
|
|
||||||
scl: GPIO18
|
|
||||||
sda: GPIO8
|
|
||||||
|
|
||||||
touchscreen:
|
|
||||||
- platform: tt21100
|
|
||||||
display: displ8
|
|
||||||
interrupt_pin:
|
|
||||||
number: GPIO3
|
|
||||||
allow_other_uses: false
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO20
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: tt21100
|
|
||||||
name: Home Button
|
|
||||||
index: 1
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: debug
|
|
||||||
free:
|
|
||||||
name: "Heap Free"
|
|
||||||
block:
|
|
||||||
name: "Max Block Free"
|
|
||||||
loop_time:
|
|
||||||
name: "Loop Time"
|
|
||||||
psram:
|
|
||||||
name: "PSRAM Free"
|
|
||||||
@@ -1,125 +0,0 @@
|
|||||||
# Tests for ESP32-S3 boards
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
network:
|
|
||||||
enable_ipv6: true
|
|
||||||
|
|
||||||
esp32:
|
|
||||||
board: esp32s3box
|
|
||||||
variant: ESP32S3
|
|
||||||
framework:
|
|
||||||
type: arduino
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: esp32-s3-test
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
debug:
|
|
||||||
|
|
||||||
psram:
|
|
||||||
|
|
||||||
light:
|
|
||||||
- platform: neopixelbus
|
|
||||||
type: GRB
|
|
||||||
variant: WS2812
|
|
||||||
pin: GPIO38
|
|
||||||
num_leds: 1
|
|
||||||
id: neopixel
|
|
||||||
method: esp32_rmt
|
|
||||||
name: neopixel-enable
|
|
||||||
internal: false
|
|
||||||
restore_mode: ALWAYS_OFF
|
|
||||||
- platform: spi_led_strip
|
|
||||||
num_leds: 4
|
|
||||||
color_correct: [80%, 60%, 100%]
|
|
||||||
id: rgb_led
|
|
||||||
name: "RGB LED"
|
|
||||||
data_rate: 8MHz
|
|
||||||
- platform: binary
|
|
||||||
name: "Red Info Light"
|
|
||||||
output: board_info_ed
|
|
||||||
entity_category: diagnostic
|
|
||||||
restore_mode: ALWAYS_OFF
|
|
||||||
|
|
||||||
spi:
|
|
||||||
id: spi_id_1
|
|
||||||
clk_pin: GPIO7
|
|
||||||
mosi_pin: GPIO6
|
|
||||||
interface: any
|
|
||||||
|
|
||||||
spi_device:
|
|
||||||
id: spidev
|
|
||||||
data_rate: 2MHz
|
|
||||||
spi_id: spi_id_1
|
|
||||||
mode: 3
|
|
||||||
bit_order: lsb_first
|
|
||||||
|
|
||||||
font:
|
|
||||||
- file: "gfonts://Roboto"
|
|
||||||
id: roboto
|
|
||||||
size: 20
|
|
||||||
|
|
||||||
display:
|
|
||||||
- platform: ili9xxx
|
|
||||||
id: displ8
|
|
||||||
model: ili9342
|
|
||||||
cs_pin: GPIO5
|
|
||||||
dc_pin: GPIO4
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO48
|
|
||||||
allow_other_uses: true
|
|
||||||
lambda: |-
|
|
||||||
it.printf(10, 100, id(roboto), Color(0x123456), COLOR_OFF, display::TextAlign::BASELINE, "%f", id(heap_free).state);
|
|
||||||
|
|
||||||
i2c:
|
|
||||||
scl: GPIO18
|
|
||||||
sda: GPIO8
|
|
||||||
|
|
||||||
output:
|
|
||||||
- platform: gpio
|
|
||||||
id: board_info_ed
|
|
||||||
pin:
|
|
||||||
# This pin is reserved on the ESP32S3!
|
|
||||||
number: 26
|
|
||||||
ignore_pin_validation_error: true
|
|
||||||
|
|
||||||
touchscreen:
|
|
||||||
- platform: tt21100
|
|
||||||
display: displ8
|
|
||||||
interrupt_pin:
|
|
||||||
number: GPIO3
|
|
||||||
ignore_strapping_warning: true
|
|
||||||
allow_other_uses: false
|
|
||||||
reset_pin:
|
|
||||||
number: GPIO48
|
|
||||||
allow_other_uses: true
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: tt21100
|
|
||||||
name: Home Button
|
|
||||||
index: 1
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: debug
|
|
||||||
free:
|
|
||||||
id: heap_free
|
|
||||||
name: "Heap Free"
|
|
||||||
block:
|
|
||||||
name: "Max Block Free"
|
|
||||||
loop_time:
|
|
||||||
name: "Loop Time"
|
|
||||||
psram:
|
|
||||||
name: "PSRAM Free"
|
|
||||||
|
|
||||||
# Purposely test that `animation:` does auto-load `image:`
|
|
||||||
# Keep the `image:` undefined.
|
|
||||||
# image:
|
|
||||||
|
|
||||||
animation:
|
|
||||||
- id: rgb565_animation
|
|
||||||
file: pnglogo.png
|
|
||||||
type: RGB565
|
|
||||||
use_transparency: false
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# Tests for rtl87xx boards using LibreTiny
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
rtl87xx:
|
|
||||||
board: generic-rtl8710bn-2mb-788k
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: rtl87xx-test
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
ota:
|
|
||||||
- platform: esphome
|
|
||||||
|
|
||||||
captive_portal:
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: gpio
|
|
||||||
name: Home Button
|
|
||||||
pin: GPIO11
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: adc
|
|
||||||
id: adc_sensor
|
|
||||||
name: ADC
|
|
||||||
pin: PA19
|
|
||||||
update_interval: 1s
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
# Tests for bk7xx boards using LibreTiny
|
|
||||||
---
|
|
||||||
wifi:
|
|
||||||
ssid: "ssid"
|
|
||||||
|
|
||||||
bk72xx:
|
|
||||||
board: cb2s
|
|
||||||
|
|
||||||
esphome:
|
|
||||||
name: bk72xx-test
|
|
||||||
|
|
||||||
logger:
|
|
||||||
|
|
||||||
ota:
|
|
||||||
- platform: esphome
|
|
||||||
|
|
||||||
captive_portal:
|
|
||||||
|
|
||||||
binary_sensor:
|
|
||||||
- platform: gpio
|
|
||||||
name: Home Button
|
|
||||||
pin: GPIO24
|
|
||||||
|
|
||||||
sensor:
|
|
||||||
- platform: adc
|
|
||||||
id: adc_sensor
|
|
||||||
name: ADC
|
|
||||||
pin: GPIO23
|
|
||||||
update_interval: 1s
|
|
||||||
|
|
||||||
mqtt:
|
|
||||||
broker: test.mosquitto.org
|
|
||||||
port: 1883
|
|
||||||
discovery: true
|
|
||||||
discovery_prefix: homeassistant
|
|
||||||
Reference in New Issue
Block a user