mirror of
https://github.com/esphome/esphome.git
synced 2026-01-10 04:00:51 -07:00
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org> Co-authored-by: J. Nick Koston <nick@home-assistant.io>
24 lines
523 B
YAML
24 lines
523 B
YAML
esphome:
|
|
name: water-heater-template-test
|
|
host:
|
|
api:
|
|
logger:
|
|
|
|
water_heater:
|
|
- platform: template
|
|
id: test_boiler
|
|
name: Test Boiler
|
|
optimistic: true
|
|
current_temperature: !lambda "return 45.0f;"
|
|
# Note: No mode lambda - we want optimistic mode changes to stick
|
|
# A mode lambda would override mode changes in loop()
|
|
supported_modes:
|
|
- "off"
|
|
- eco
|
|
- gas
|
|
- performance
|
|
visual:
|
|
min_temperature: 30.0
|
|
max_temperature: 85.0
|
|
target_temperature_step: 0.5
|