1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-02 08:01:50 +00:00
Files
esphome/tests/components/duty_time/common.yaml

14 lines
224 B
YAML

binary_sensor:
- platform: template
id: bin1
lambda: |-
if (esphome::millis() > 10000) {
return true;
}
return false;
sensor:
- platform: duty_time
name: Duty Time
sensor: bin1