mirror of
https://github.com/esphome/esphome.git
synced 2026-05-25 10:26:10 +08:00
d5c36eaf2a
Co-authored-by: J. Nick Koston <nick@koston.org>
14 lines
215 B
YAML
14 lines
215 B
YAML
binary_sensor:
|
|
- platform: template
|
|
id: bin1
|
|
lambda: |-
|
|
if (millis() > 10000) {
|
|
return true;
|
|
}
|
|
return false;
|
|
|
|
sensor:
|
|
- platform: duty_time
|
|
name: Duty Time
|
|
sensor: bin1
|