AirCon icon indicating copy to clipboard operation
AirCon copied to clipboard

Hisense fan speed, orientation and temperature not working

Open wifi75 opened this issue 5 years ago • 4 comments

@deiger ck007max My configuration on hassio it is corrent but fan speed,orientation and temperature control not work... why? Only on off switch work!

### HiSense Air Conditioner STANZETTA ###
climate:
  - platform: mqtt
    name: "HiSense AC Stanzetta"
    current_temperature_topic: "hisense_stanzetta/f_temp_in/status"
    fan_mode_command_topic: "hisense_stanzetta/t_fan_speed/command"
    fan_mode_state_topic: "hisense_stanzetta/t_fan_speed/status"
    fan_modes:
      - "auto"
      - "lower"
      - "low"
      - "medium"
      - "high"
      - "higher"
    max_temp: "30"
    min_temp: "16"
    mode_command_topic: "hisense_stanzetta/t_work_mode/command"
    mode_state_topic: "hisense_stanzetta/t_work_mode/status"
    modes:
      - "fan_only"
      - "heat"
      - "cool"
      - "dry"
      - "auto"
    power_command_topic: "hisense_stanzetta/t_power/command"
    power_state_topic: "hisense_stanzetta/t_power/status"  
    precision: 1.0
    swing_mode_command_topic: "hisense_stanzetta/t_fan_power/command"
    swing_mode_state_topic: "hisense_stanzetta/t_fan_power/status"
    temperature_command_topic: "hisense_stanzetta/t_temp/command"
    temperature_state_topic: "hisense_stanzetta/t_temp/status"
    temperature_unit: "C"
    
### HiSense Air Conditioner STUDIO ###

  - platform: mqtt
    name: "HiSense AC Studio"
    current_temperature_topic: "hisense_studio/f_temp_in/status"
    fan_mode_command_topic: "hisense_studio/t_fan_speed/command"
    fan_mode_state_topic: "hisense_studio/t_fan_speed/status"
    fan_modes:
      - "auto"
      - "lower"
      - "low"
      - "medium"
      - "high"
      - "higher"
    max_temp: "30"
    min_temp: "16"  
    mode_command_topic: "hisense_studio/t_work_mode/command"
    mode_state_topic: "hisense_studio/t_work_mode/status"
    modes:
      - "fan_only"
      - "heat"
      - "cool"
      - "dry"
      - "auto"
    power_command_topic: "hisense_studio/t_power/command"
    power_state_topic: "hisense_studio/t_power/status"  
    precision: 1.0
    swing_mode_command_topic: "hisense_studio/t_fan_power/command"
    swing_mode_state_topic: "hisense_studio/t_fan_power/status"
    temperature_command_topic: "hisense_studio/t_temp/command"
    temperature_state_topic: "hisense_studio/t_temp/status"
    temperature_unit: "C"
   
switch:
  - platform: mqtt
    name: HiSense AC Stanzetta
    state_topic: "hisense_stanzetta/t_power/status"
    command_topic: "hisense_stanzetta/t_power/command"
    payload_on: "on"
    payload_off: "off"
    qos: 1   

  - platform: mqtt
    name: HiSense AC Studio
    state_topic: "hisense_studio/t_power/status"
    command_topic: "hisense_studio/t_power/command"  
    payload_on: "on"
    payload_off: "off"
    qos: 1

here Iwen I set fan to High after 2 second it retutn to AUTO why? image

wifi75 avatar Jul 05 '20 12:07 wifi75

@deiger ck007max My configuration on hassio it is corrent but fan speed,orientation and temperature control not work... why? Only on off switch work!

Hi wifi75, I've the same problem. Check the topic "turn_on turn_off AC in Home Assistant and temperature issues". I'm waiting an answer from deiger, I think that he's working on it.

Ras195 avatar Jul 06 '20 14:07 Ras195

@Ras195 no news?

wifi75 avatar Jul 08 '20 13:07 wifi75

Looked a bit into some of this as I just bought two of these.

For fan speed:

  • With some newer models, it seems that the FAN MODES have shifted values somewhat
    • Auto = 0
    • LOW = 2
    • MED = 3
    • HIGH = 4

Saw this coming through as an error on the logs, tweaked a few things and those work again.

As for the "power", this is mostly HA's fault. The power "off" has to be explicitly set up inside of the "modes" list. This will end up sending it via MQTT to f_work_mode AND f_power. Annoyingly.

As for Swing mode, dunno. Haven't figured that one out yet.

preeefix avatar Jul 22 '20 08:07 preeefix

Swing mode just take a really long time for some reason.... It just took ~20s for it to toggle.

preeefix avatar Jul 22 '20 08:07 preeefix