Replies: 2 comments 7 replies
-
use web 3 not 2 is more HA like |
Beta Was this translation helpful? Give feedback.
7 replies
-
Hello, fan:
- platform: template
id: fan_climatiseur
name: "Ventilation Climatiseur"
speed_count: 4
on_speed_set:
then:
- if:
condition:
lambda: 'return x == 0;'
then:
- climate.control:
id: climate_climatiseur
fan_mode: "Auto"
- if:
condition:
lambda: 'return x == 1;'
then:
- climate.control:
id: climate_climatiseur
fan_mode: "Low"
- if:
condition:
lambda: 'return x == 2;'
then:
- climate.control:
id: climate_climatiseur
fan_mode: "Medium"
- if:
condition:
lambda: 'return x == 3;'
then:
- climate.control:
id: climate_climatiseur
fan_mode: "High"
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With Mitsubishi HP, the fan control doesn't appear on the web page.
Mode and vane appear correctly.
How can i control the fan from de web?
climate:
platform: cn105
id: hp
name: "${friendly_name}"
icon: mdi:heat-pump
visual:
min_temperature: 15
max_temperature: 31
temperature_step:
target_temperature: 1
current_temperature: 0.1
compressor_frequency_sensor:
name: ${name} Compressor Frequency
supports:
mode: [COOL, HEAT, FAN_ONLY, DRY]
fan_mode: [AUTO, QUIET, LOW, HIGH]
Beta Was this translation helpful? Give feedback.
All reactions