Skip to content

Commit

Permalink
test d1 mini config change to support new field
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldn committed Sep 14, 2023
1 parent 7770d10 commit f0d289d
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion wemos_d1_mini.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,57 @@ logger:

web_server:

climate:
- platform: haier
id: ${device_id}
protocol: hOn
name: ${device_name}
uart_id: ${uart_id}
wifi_signal: ${send_wifi} # Optional, default true, enables WiFI signal transmission from ESP to AC
beeper: true # Optional, default true, disables beep on commands from ESP
control_packet_size: 18
outdoor_temperature: # Optional, outdoor temperature sensor
name: ${device_name} outdoor temperature
visual: # Optional, you can use it to limit min and max temperatures in UI (not working for remote!)
min_temperature: 16 °C
max_temperature: 30 °C
temperature_step:
target_temperature: 1
current_temperature: 0.5
supported_modes: # Optional, can be used to disable some modes if you don't need them
- 'OFF' # always available
- HEAT_COOL # always available
- COOL
- HEAT
- DRY
- FAN_ONLY
supported_swing_modes: # Optional, can be used to disable some swing modes if your AC does not support it
- 'OFF'
- VERTICAL
- HORIZONTAL
- BOTH
supported_presets: # Optional, can be used to disable some presets if your AC does not support it
- ECO
- BOOST
- SLEEP

packages:
local_haier: !include configs/external_components/local_haier.yaml
haier_base: !include .haier-hon-base.yaml
turn_on_service: !include configs/api/service.turn_on.yaml
turn_off_service: !include configs/api/service.turn_off.yaml
self_cleaning_button: !include configs/button/self_cleaning.yaml
steri_cleaning_button: !include configs/button/steri_cleaning.yaml
cleaning_status_sensor: !include configs/text_sensor/cleaning_status.yaml
display_switch: !include configs/switch/display.yaml
beeper_switch: !include configs/switch/beeper.yaml
health_mode_switch: !include configs/switch/health_mode.yaml
restart_switch: !include configs/switch/restart.yaml
# Vertical airflow direction setting. Works only if the vertical swing is
# off. You can remove this control if you don't need it
airflow_vertical_select: !include configs/select/airflow_vertical.yaml
# Horizontal airflow direction setting. Works only if the horizontal swing
# is off. You can remove this control if you don't need it
airflow_horizontal_select: !include configs/select/airflow_horizontal.yaml
test_cmd1: !include configs/number/command_code.yaml
test_cmd2: !include configs/number/command_arg.yaml
test_btn: !include configs/button/send_test_command.yaml

0 comments on commit f0d289d

Please sign in to comment.