mirror of
https://github.com/esphome/esphome.git
synced 2026-03-04 11:48:21 -07:00
24 lines
366 B
YAML
24 lines
366 B
YAML
esphome:
|
|
name: loop-test
|
|
on_boot:
|
|
- logger.log: "System booted!"
|
|
|
|
host:
|
|
api:
|
|
logger:
|
|
level: DEBUG
|
|
|
|
external_components:
|
|
- source:
|
|
type: local
|
|
path: EXTERNAL_COMPONENT_PATH
|
|
|
|
loop_test_component:
|
|
id: loop_test
|
|
|
|
interval:
|
|
- interval: 1s
|
|
then:
|
|
- logger.log: "Interval tick"
|
|
|
|
# We'll check the loop behavior through logs and API |