mirror of
https://github.com/esphome/esphome.git
synced 2026-09-12 15:57:33 +00:00
20 lines
455 B
YAML
20 lines
455 B
YAML
sensor:
|
|
- platform: template
|
|
id: climate_ir_lg_temp_sensor
|
|
lambda: return 22.0;
|
|
update_interval: 60s
|
|
- platform: template
|
|
id: humidity_sensor
|
|
lambda: return 50.0;
|
|
update_interval: 60s
|
|
|
|
climate:
|
|
- platform: climate_ir_lg
|
|
name: LG Climate
|
|
transmitter_id: xmitr
|
|
header_high: 3300us
|
|
header_low: 9840us
|
|
advanced_commands_support: true
|
|
sensor: climate_ir_lg_temp_sensor
|
|
humidity_sensor: humidity_sensor
|